home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / PC Tools ThreatFire / tfinstall.exe / {app} / QuickStart-it.chm / ehlpdhtm.js < prev    next >
Text File  |  2010-01-14  |  127KB  |  4,336 lines

  1. ∩╗┐// eHelp┬« Corporation Dynamic HTML JavaScript 
  2. // Copyright┬⌐ 1998-2003 eHelp┬« Corporation.All rights reserved.
  3. // Version=5.0
  4.  
  5. // Warning:Do not modify this file.It is generated by RoboHELP┬« and changes will be overwritten.
  6.  
  7. //// Segment Begin -- (JavaScript 1.0)
  8.  
  9. /// Section Begin - General and relative topics(JavaScript 1.0)
  10.  
  11. //{{HH_SYMBOL_SECTION
  12. var HH_ChmFilename = "C:\\ThreatFire QSG_IT\\ThreatFire QSG_IT.chm";
  13. var HH_WindowName = "IT";
  14. var HH_GlossaryFont = "";
  15. var HH_Glossary = "0";
  16. var HH_Avenue = "0";
  17. var HH_ActiveX = false;
  18. //}}HH_SYMBOL_SECTION
  19. HH_ChmFilename = "C:\\ThreatFire QSG_IT\\!SSL!\\Microsoft_HTML_Help\\QuickStart-it.chm";
  20.  
  21. //Begin to support previous generic parameters
  22. //Get the information about the browser.
  23. var gstrBsAgent     = navigator.userAgent.toLowerCase();
  24. var gnBsVer               = parseInt(navigator.appVersion);
  25.  
  26. var gbBsOpera        = (gstrBsAgent.indexOf('opera') != -1);
  27. var gbBsKonqueror    = (gstrBsAgent.indexOf('konqueror') != -1);
  28. var gbBsSafari        = (gstrBsAgent.indexOf('safari') != -1);
  29. var gbBsIE          = (gstrBsAgent.indexOf('msie') != -1) && !gbBsOpera && !gbBsKonqueror && !gbBsSafari;
  30. var gbBsNS          = (gstrBsAgent.indexOf('mozilla') != -1) && ((gstrBsAgent.indexOf('spoofer') == -1) && (gstrBsAgent.indexOf('compatible') == -1)) && !gbBsOpera && !gbBsKonqueror && !gbBsSafari;
  31.  
  32. var gbBsMac            = (gstrBsAgent.indexOf('mac') != -1);
  33. var gbBsWindows        = ((gstrBsAgent.indexOf('win') != -1) || (gstrBsAgent.indexOf('16bit') != -1));
  34. var gbBsSunOS        = (gstrBsAgent.indexOf("sunos") != -1);
  35.  
  36. var gbBsIE3Before     = ((gbBsIE) && (gnBsVer <= 2));
  37. var gbBsNS3Before     = ((gbBsNS) && (gnBsVer <= 3));
  38.  
  39. var gbBsNS2            = ((gbBsNS) && (gnBsVer <= 2));
  40. var gbBsNS3            = ((gbBsNS) && (gnBsVer == 3));
  41. var gbBsIE300301    = ((gbBsIE) && (gnBsVer == 2) && ((gstrBsAgent.indexOf("3.00") != -1)||(gstrBsAgent.indexOf("3.0a") != -1)||(gstrBsAgent.indexOf("3.0b")!=-1)||(gstrBsAgent.indexOf("3.01")!=-1)));
  42. var gbBsIE302        = ((gbBsIE) && (gnBsVer == 2) && (gstrBsAgent.indexOf("3.02") != -1));
  43.  
  44. var gbBsNS4            = ((gbBsNS) && (gnBsVer >= 4));
  45. var gbBsNS6            = ((gbBsNS) && (gnBsVer >= 5));
  46. var    gbBsNS7            = false;
  47.  
  48. var gbBsIE4            = ((gbBsIE) && (gnBsVer >= 4));
  49. var gbBsIE5            = false;
  50. var gbBsIE55        = false;
  51.  
  52. var gbBsOpera6        = false;
  53. var gbBsOpera7        = false;
  54.  
  55. var gbBsKonqueror3    = false;
  56.  
  57.  
  58.  
  59. gbBsIE = (navigator.appName.indexOf("Microsoft") != -1) && !gbBsOpera && !gbBsKonqueror && !gbBsSafari;;
  60. if (gbBsIE)
  61. {
  62.     if (parseInt(navigator.appVersion) >= 4) {
  63.         gbBsIE4 = true;
  64.         if (gbBsIE4) {
  65.             var nPos = gstrBsAgent.indexOf("msie");
  66.             var strIEversion = gstrBsAgent.substring(nPos + 5);
  67.             var nVersion =  parseFloat(strIEversion);
  68.             if (nVersion >= 5)
  69.                 gbBsIE5 = true;
  70.             if (nVersion >= 5.5)
  71.                 gbBsIE55 = true;
  72.         }
  73.     }
  74. }
  75. if (gbBsNS6)
  76. {
  77.     var nPos=gstrBsAgent.indexOf("gecko");
  78.     if(nPos!=-1)
  79.     {
  80.         var nPos2=gstrBsAgent.indexOf("/", nPos);
  81.         if(nPos2!=-1)
  82.         {
  83.             var nVersion=parseFloat(gstrBsAgent.substring(nPos2+1));
  84.             if (nVersion>=20020823)
  85.                 gbBsNS7=true;
  86.         }
  87.     }    
  88. }
  89. if (gbBsOpera)
  90. {
  91.     var nPos = gstrBsAgent.indexOf("opera");
  92.     if(nPos!=-1)
  93.     {
  94.         var nVersion = parseFloat(gstrBsAgent.substring(nPos+6));
  95.         if (nVersion >= 6)
  96.         {
  97.             gbBsOpera6=true;
  98.             if (nVersion >=7)
  99.                 gbBsOpera7=true;    
  100.         }
  101.     }
  102. }
  103. if (gbBsKonqueror)
  104. {
  105.     var nPos = gstrBsAgent.indexOf("konqueror");
  106.     if(nPos!=-1)
  107.     {
  108.         var nVersion = parseFloat(gstrBsAgent.substring(nPos+10));
  109.         if (nVersion >= 3)
  110.         {
  111.             gbBsKonqueror3=true;
  112.         }
  113.     }
  114. }
  115.  
  116. function insertAdjacentHTML(obj, where, htmlStr)
  117. {
  118.     if (gbBsIE || gbBsOpera7)
  119.     {
  120.         obj.insertAdjacentHTML(where, htmlStr);
  121.     }
  122.     else if (gbBsNS6 || gbBsSafari)
  123.     {
  124.         var r = obj.ownerDocument.createRange();
  125.         r.setStartBefore(obj);
  126.         var    parsedHTML = r.createContextualFragment(htmlStr);
  127.         
  128.         switch (where){
  129.         case 'beforeBegin':
  130.             obj.parentNode.insertBefore(parsedHTML,obj);
  131.             break;
  132.         case 'afterBegin':
  133.             obj.insertBefore(parsedHTML,obj.firstChild);
  134.             break;
  135.         case 'beforeEnd':
  136.             obj.appendChild(parsedHTML);
  137.             break;
  138.         case 'afterEnd':
  139.             if (obj.nextSibling){
  140.             obj.parentNode.insertBefore(parsedHTML,obj.nextSibling);
  141.             } else {
  142.             obj.parentNode.appendChild(parsedHTML);
  143.             }
  144.             break;
  145.         }
  146.     }
  147. }
  148.  
  149. // Utilities functions.
  150. function BsscHasExtJs()
  151. {
  152.     if( gbBsIE3Before || gbBsNS3Before)
  153.         return false;
  154.     return true;
  155. }
  156.  
  157. // Register event handler
  158. var gBsOnLoads             = new Array();    // An array holds all the onload event handler.
  159. var gBsOnClicks         = new Array();    // An array holds all the onClick event handler.
  160. var gBsOnUnLoads         = new Array();    // An array holds all the OnUnLoad event handler.
  161. var gBsOnMouseOvers     = new Array();    // An array holds all the OnMouseOver event handler.
  162. var gBsOnMouseOuts         = new Array();    // An array holds all the OnMouseOut event handler.
  163.  
  164. var gbOrignalOnMouseDown = null;
  165.  
  166. function BsscRegisterOnLoad(funcHandler)
  167. {
  168.     var nLength = gBsOnLoads.length;
  169.     gBsOnLoads[nLength] = funcHandler;
  170. }
  171.  
  172. function BsscRegisterOnClick(funcHandler)
  173. {
  174.     var nLength = gBsOnClicks.length;
  175.     gBsOnClicks[nLength] = funcHandler;
  176. }
  177.  
  178. function BsscRegisterOnUnLoad(funcHandler)
  179. {
  180.     var nLength = gBsOnUnLoads.length;
  181.     gBsOnUnLoads[nLength] = funcHandler;
  182. }
  183.  
  184. function BsscRegisterOnMouseOver(funcHandler)
  185. {
  186.     var nLength = gBsOnMouseOvers.length;
  187.     gBsOnMouseOvers[nLength] = funcHandler;
  188. }
  189.  
  190. function BsscRegisterOnMouseOut(funcHandler)
  191. {
  192.     var nLength = gBsOnMouseOuts.length;
  193.     gBsOnMouseOuts[nLength] = funcHandler;
  194. }
  195.  
  196. function BsGeneralOnLoad()
  197. {
  198.     if (!gbBsIE4 && !gbBsNS4)
  199.         return;
  200.  
  201.     // Make everything visible in navigator
  202.     if (gbBsNS4 && !gbBsNS6) {
  203.         // Make some special effects items visible
  204.         for (var iLayer = 0; iLayer < document.layers.length; iLayer++) {
  205.             document.layers[iLayer].visibility = "show";
  206.             document.layers[iLayer].left = 0;
  207.         }
  208.     }
  209. }
  210.  
  211. // If resize the netscape browser, need to reload it.
  212. function BsReDo()
  213. {
  214.   if (innerWidth != origWidth || innerHeight != origHeight)
  215.      location.reload();
  216. }
  217. // End of the local functions.
  218.  
  219. // The following functions are used by the html files.
  220. function BSSCOnLoad()
  221. {
  222.     if( !BsscHasExtJs() )
  223.         return;
  224.     for (var nElement = gBsOnLoads.length - 1; nElement >= 0; nElement--)
  225.         gBsOnLoads[nElement]();
  226. }
  227.  
  228. function BSSCOnClick()
  229. {
  230.     if (!BsscHasExtJs()) return;
  231.         
  232.     for (var nElement = gBsOnClicks.length - 1; nElement >= 0; nElement--)
  233.         gBsOnClicks[nElement]();
  234. }
  235.  
  236. function BSSCOnUnload()
  237. {
  238.     if (!BsscHasExtJs()) return;
  239.     for (var nElement = gBsOnUnLoads.length - 1; nElement >= 0; nElement--)
  240.         gBsOnUnLoads[nElement]();
  241. }
  242.  
  243. function BSSCOnMouseOver()
  244. {
  245.     if (!BsscHasExtJs()) return;
  246.     for (var nElement = gBsOnMouseOvers.length - 1; nElement >= 0; nElement--)
  247.         gBsOnMouseOvers[nElement]();
  248. }
  249.  
  250. function BSSCOnMouseOut()
  251. {
  252.     if (!BsscHasExtJs()) return;
  253.     for (var nElement = gBsOnMouseOuts.length - 1; nElement >= 0; nElement--)
  254.     {
  255.         gBsOnMouseOuts[nElement]();
  256.     }
  257. }
  258. // End of invocation of the event handle functions.
  259.  
  260. // Add the GereralOnLoad to the onload array.
  261. if (typeof(BsscRegisterOnLoad) != "undefined")
  262. {
  263.     BsscRegisterOnLoad(BsGeneralOnLoad);
  264. }
  265. if (gbBsNS4&&!gbBsNS6) {
  266.     origWidth = innerWidth;
  267.     origHeight = innerHeight;
  268.     onresize = BsReDo;
  269. }
  270. //End to support previous generic parameters
  271.  
  272. //Begin to support previous HHActiveX invoking
  273. function BsHHActivateComponents()
  274. {
  275.     if( HH_ActiveX && (HH_ChmFilename != "") && ((self == top) || (self == top.frames[0])))
  276.     {
  277.         var objBody = getElementsByTag(document,"BODY")[0];
  278.         if( typeof(objBody) == "object" )
  279.         {
  280.             insertAdjacentHTML(objBody, "beforeEnd", '<OBJECT ID="HHComponentActivator" CLASSID="CLSID:399CB6C4-7312-11D2-B4D9-00105A0422DF" width=0 height=0></OBJECT>');
  281.             if (HHComponentActivator.object)
  282.                 HHComponentActivator.Activate(HH_ChmFilename, HH_WindowName, HH_GlossaryFont, HH_Glossary, HH_Avenue);
  283.         }
  284.     }
  285. }
  286.  
  287. function BsHHActivXOnLoad()
  288. {    
  289.     if( gbBsIE4 )
  290.         BsHHActivateComponents(); 
  291. }
  292.  
  293. if( typeof(BsscRegisterOnLoad) != "undefined" )
  294. {
  295.     BsscRegisterOnLoad(BsHHActivXOnLoad);
  296. }
  297. //End to support previous HHActiveX invoking
  298.  
  299. //Begin to support previous relative topics
  300. //If webHelp needs Related Topics DHTMLcode, it's supposed to add it here
  301. var gbPopupMenuTimeoutExpired = false;
  302. var gbInPopupMenu = false;
  303. var gbPopupMenuTopicList = null;
  304. var gOlddocumentClick = null;
  305.  
  306. //////////////////////////////////////////////////////////////////////////////////////////
  307. //
  308. // Popup Menu code
  309. //
  310. //////////////////////////////////////////////////////////////////////////////////////////
  311.  
  312. var g_bIsPopupMenuInit = false;
  313. function _WritePopupMenuLayer()
  314. {
  315.     if (!g_bIsPopupMenuInit)
  316.         {
  317.       if (gbBsNS4&&!gbBsNS6) {
  318. //Do not try to write ininle styles for NS!  NS can not handle it and will not stop downloading the html page...
  319.            document.write("<DIV CLASS='WebHelpPopupMenu' ID='PopupMenu'></DIV>");
  320.       } else{
  321.       document.write("<DIV ID='PopupMenu' STYLE='position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;'></DIV>");
  322.       if (!(gbBsNS4&&!gbBsNS6)) {
  323.         document.write("<STYLE TYPE='text/css'>");
  324.         if (gbBsMac&&gbBsIE4) {
  325.             document.write(".PopupOver {font-family:'Arial'; color:white; background:navy; font-size:10pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  326.             document.write(".PopupNotOver {font-family:'Arial'; color:black; background:#c0c0c0; font-size:10pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  327.         } else {
  328.             document.write(".PopupOver {font-family:'Arial'; color:white; background:navy; font-size:8pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  329.             document.write(".PopupNotOver {font-family:'Arial'; color:black; background:#c0c0c0; font-size:8pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  330.         }
  331.         document.write("</STYLE>");
  332.        }
  333.           }
  334.       g_bIsPopupMenuInit = true;
  335.     }
  336. }
  337.  
  338. //Seek for the bsscright frame 
  339. function _SeekFrameByName( cRoot, strName )
  340. {
  341.     if( cRoot == null )    return null;
  342.     if( cRoot.frames == null )    return null;
  343.     if( cRoot.frames[strName] != null )    return cRoot.frames[strName];
  344.     for (var i=0; i<cRoot.frames.length; i++)
  345.     {
  346.         var cObj = null;
  347.         if (!gbBsNS6) 
  348.             cObj = _SeekFrameByName( cRoot.frames(i).document, strName );
  349.         else
  350.             cObj = _SeekFrameByName( cRoot.frames[i], strName );
  351.         if( cObj != null )        return cObj;
  352.     };
  353.     return null;
  354. }
  355. function _GetFrameByName( cRoot, strName )
  356. {
  357.     if( cRoot == null )    return null;
  358.     var cRet = _SeekFrameByName(cRoot, strName);
  359.     if( cRet != null )    return cRet;
  360.     if (cRoot.parent != cRoot)
  361.         return _GetFrameByName( cRoot.parent, strName );
  362.     else
  363.         return null;
  364. }
  365.  
  366. var gfn_arguments = null;
  367. function _PopupMenu_Invoke(fn_arguments)
  368. {
  369.     gfn_arguments = fn_arguments;
  370.     if (gbBsOpera6&&gbBsMac)
  371.     {
  372.         var wndOldPopupLinks= window.open(document.location.href, "popuplinks");
  373.         wndOldPopupLinks.close();
  374.         setTimeout("_PopupMenu_Invoke_2();",100);
  375.     }
  376.     else
  377.     {
  378.         _PopupMenu_Invoke_2();
  379.     }
  380. }
  381.  
  382. function _PopupMenu_Invoke_2()
  383. {
  384.     var fn_arguments = gfn_arguments;
  385.     gfn_arguments = null;
  386.     
  387.     // Make sure we have reasonable arguments
  388.     var argLen = fn_arguments.length;
  389.     if (argLen < 3) {
  390.         return false;
  391.     }
  392.  
  393.     // Check to see if we only have one target
  394.     var strTarget = "";
  395.     var targetDoc = null;
  396.     if (fn_arguments[1] == '') {
  397.         if (BSSCPopup_IsPopup()) {
  398.             targetDoc = parent;
  399.             strTarget = "TARGET= _parent";
  400.         }
  401.         else
  402.             targetDoc = window.document;
  403.     } else {
  404.         targetDoc = _GetFrameByName( parent, fn_arguments[1] );
  405.  
  406.         strTarget = "TARGET='" + fn_arguments[1] + "'";
  407.     }
  408.  
  409.     if ((!gbBsIE4 && !gbBsNS4 && !gbBsOpera7 && !gbBsKonqueror3 &&!gbBsSafari) || ((gbBsMac) && (gbBsIE4) && (window.event.srcElement.tagName == "AREA"))) {
  410.     
  411.         var argLen     = fn_arguments.length;
  412.  
  413.         // Create the window that the hyperlinks will go into
  414.         var nHeight = argLen * 15;
  415.         var nWidth = 400;
  416.         var strParam = "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=auto";
  417.         strParam += ",height=" + nHeight + ",width=200";
  418.         strParam += ",resizable";
  419.  
  420.         var wndTemp=null;
  421.         // Create a temporary window first to ensure the real popup comes up on top
  422.         if (!gbBsOpera)
  423.             wndTemp = window.open("", "temp", strParam);
  424.  
  425.         // Create the real popup window
  426.         var wndPopupLinks=null;
  427.         if (gbBsOpera&&gbBsMac)
  428.         {
  429.             wndTemp = window.open(document.location.href, "temp", strParam);
  430.             wndPopupLinks= window.open(document.location.href, "popuplinks", strParam);
  431.         }
  432.         else
  433.             wndPopupLinks= window.open("", "popuplinks", strParam);
  434.         wndPopupLinks.document.open("text/html");
  435.  
  436.         // Close the temporary
  437.         if (wndTemp)
  438.             wndTemp.close();
  439.  
  440.         var sHTML="<html><head></head>";
  441.         sHTML+="<body onBlur=\'self.focus();\'>";
  442.         var strParaLine = "";
  443.         for (var i = 0; i < (argLen - 2) / 2; i++) {
  444.             strParaLine = "";
  445.             strParaLine += "<a href=\"javascript:";
  446.             if (gbBsIE) {
  447.                 strParaLine += "onBlur=null; ";
  448.             }
  449.             strParaLine += "opener.location=\'";
  450.             strParaLine += fn_arguments[2 * i + 3];
  451.             strParaLine += "\';close();\"";
  452.             strParaLine += strTarget;
  453.  
  454.             strParaLine += ">";
  455.             strParaLine += fn_arguments[2 * i + 2];
  456.             strParaLine += "</a>";
  457.             strParaLine += "<br>";
  458.             sHTML+=strParaLine;
  459.         }
  460.         sHTML+="</body></html>";
  461.         wndPopupLinks.document.write(sHTML);
  462.         wndPopupLinks.document.close();
  463.         window.gbInPopupMenu = true;
  464.         if (!gbBsIE) {
  465.             wndPopupLinks.focus();
  466.         }
  467.         return false;
  468.     }
  469.  
  470.     if (((argLen < 5) && ((isNaN(fn_arguments[2])) || (gbPopupMenuTopicList == null))) ||
  471.         ((argLen < 4) && ((!isNaN(fn_arguments[2])) && (gbPopupMenuTopicList != null)))) {
  472.         // Get the place that we will be putting the topic into
  473.         var strURL = "";
  474.         if (isNaN(fn_arguments[2]) ||  (gbPopupMenuTopicList == null)) {
  475.             strURL = fn_arguments[3];
  476.         }
  477.         else     {
  478.             strURL = gbPopupMenuTopicList[fn_arguments[2]].strURL;
  479.         }
  480.  
  481.         if (targetDoc != null) {
  482.             targetDoc.location.href = strURL;
  483.         }
  484.         else {
  485.             if (fn_arguments[1] != null && typeof(fn_arguments[1]) != "undefined")
  486.                 window.open(strURL, fn_arguments[1]);
  487.             else
  488.                 window.open(strURL);
  489.         }        
  490.         window.gbInPopupMenu = true;
  491.         return false;
  492.     }
  493.     
  494.     var strMenu = "";
  495.     if (gbBsNS4&&!gbBsNS6) {
  496.         strMenu = '<TABLE BORDER="1" CELLSPACING=0 CELLPADDING=3 BGCOLOR="#c0c0c0">';
  497.     } else {
  498.         strMenu = '<TABLE STYLE="border:2px outset white;" CELLSPACING=0';
  499.         if (gbBsMac) {
  500.             strMenu += ' CELLPADDING=4';
  501.         } else {
  502.             strMenu += ' CELLPADDING=2';
  503.         }    
  504.         strMenu += ' BGCOLOR=#c0c0c0>';
  505.     }
  506.     // Add each of the items
  507.     var i = 2;
  508.     while (i <= argLen - 1) {
  509.         strMenu += '<TR><TD><NOBR>'
  510.         // If the destination is a number then look it up in the topic list
  511.         if (isNaN(fn_arguments[i]) ||  (gbPopupMenuTopicList == null)) {
  512.             strMenu += '<DIV STYLE="padding-left:3pt; padding-right:3pt;"><A HREF="' + fn_arguments[i + 1] + '"' + strTarget;
  513.         } else {
  514.             strMenu += '<DIV STYLE="padding-left:3pt; padding-right:3pt;"><A HREF="' + gbPopupMenuTopicList[fn_arguments[i]].strURL + '"' + strTarget;
  515.         }
  516.         strMenu += ' onclick="PopupMenu_HandleClick(event);"';
  517.         strMenu += ' onmouseover="PopupMenu_Over(event);"';
  518.         strMenu += ' onmouseout="PopupMenu_Out(event);"';
  519.         strMenu += '>';
  520.         if (isNaN(fn_arguments[i]) || (gbPopupMenuTopicList == null)) {
  521.             strMenu += '<SPAN CLASS="PopupNotOver">' + fn_arguments[i] + '</SPAN>';
  522.         } else {
  523.             strMenu += '<SPAN CLASS="PopupNotOver">' + gbPopupMenuTopicList[fn_arguments[i]].strTitle + '</SPAN>';
  524.         }
  525.         strMenu += '</A></DIV></NOBR></TD></TR>';
  526.  
  527.         if (isNaN(fn_arguments[i]) || (gbPopupMenuTopicList == null)) {
  528.             i += 2;
  529.         } else {
  530.             i += 1;
  531.         }
  532.     }
  533.     strMenu += "</TABLE>";
  534.  
  535.     if (gbBsMac) {
  536.     // totally hack. because ie5 in mac need something. </TABLE> is one of them. mac is mad.
  537.         strMenu +="<TABLE></TABLE>";
  538.     }
  539.  
  540.     var layerPopup = null;
  541.     var stylePopup = null;
  542.     var nEventX = 0;
  543.     var nEventY = 0;
  544.     var nWindowWidth = 0;
  545.     if (gbBsIE4 || gbBsOpera7) {
  546.  
  547.         layerPopup = getElement("PopupMenu");
  548.         layerPopup.innerHTML = strMenu;
  549.         stylePopup = layerPopup.style;
  550.  
  551.         _BSPSGetClientSize();
  552.  
  553.         // Get the position of the item causing the event (relative to its parent)
  554.         nEventX = window.event.clientX;
  555.         nEventY = window.event.clientY;
  556.  
  557.         if (nEventY + layerPopup.scrollHeight + 10 < gBsClientHeight) {
  558.             nEventY += document.body.scrollTop + 10;
  559.         } else {
  560.             nEventY = (document.body.scrollTop + gBsClientHeight) - layerPopup.scrollHeight - 20;
  561.         }
  562.         stylePopup.top = nEventY;
  563.         
  564.         var nPopupWidth = layerPopup.scrollWidth;
  565.         if (gbBsMac) {
  566.             nPopupWidth = 80; // we have no idea how to get the dynamic width of the popup.
  567.         }
  568.         if (nEventX + nPopupWidth + 20 > gBsClientWidth) {
  569.             if (gBsClientWidth - nPopupWidth < 5) {
  570.                 stylePopup.left = 5;
  571.             } else {
  572.                 stylePopup.left = gBsClientWidth - nPopupWidth - 5;
  573.             }
  574.         } else {
  575.             stylePopup.left = nEventX + document.body.scrollLeft + 20;
  576.         }
  577.  
  578.         stylePopup.visibility = "visible";
  579.         if (!gOlddocumentClick && document.onclick)
  580.             gOlddocumentClick = document.onclick;
  581.         document.onclick = PopupMenu_HandleClick;
  582.  
  583.     } else if (gbBsNS6 || gbBsKonqueror3||gbBsSafari) {
  584.         layerPopup = getElement("PopupMenu");
  585.         layerPopup.style.visibility = "hidden";
  586.     
  587.         if (gbBsNS6)
  588.         {
  589.             var e = fn_arguments[0];
  590.             nEventX = e.pageX;
  591.             nEventY = e.pageY;
  592.         }
  593.         else
  594.         {
  595.             nEventX = window.event.clientX;
  596.             nEventY = window.event.clientY;
  597.         }
  598.         _BSPSGetClientSize();
  599.         layerPopup.innerHTML = strMenu;
  600.  
  601.         if (nEventY + layerPopup.offsetHeight + 20  <  window.pageYOffset + gBsClientHeight) {
  602.             nEventY += 20;
  603.         } else {
  604.             nEventY = gBsClientHeight + window.pageYOffset - layerPopup.offsetHeight - 20;
  605.         }
  606.  
  607.         if (nEventX + layerPopup.offsetWidth + 20 > gBsClientWidth + window.pageXOffset) {
  608.             if (gBsClientWidth + window.pageXOffset - layerPopup.offsetWidth < 20) {
  609.                 nEventX = 5;
  610.             } else {
  611.                 nEventX = gBsClientWidth + window.pageXOffset - layerPopup.offsetWidth - 20;
  612.             }
  613.         } else {
  614.             nEventX += 20;
  615.         }
  616.         layerPopup.style.top = nEventY;
  617.         layerPopup.style.left = nEventX;
  618.         // set again to avoid the stupid frash in netscape 6.
  619.         layerPopup.innerHTML = strMenu;
  620.         layerPopup.style.visibility = "visible";
  621.         //window.captureEvents(Event.MOUSEDOWN);
  622.         if (!gOlddocumentClick && document.onclick)
  623.             gOlddocumentClick = document.onclick;
  624.         window.onclick = PopupMenu_HandleClick;
  625.     }
  626.     else if (gbBsNS4) {
  627.         layerPopup = document.layers.PopupMenu;
  628.         layerPopup.visibility = "hide";
  629.         stylePopup = layerPopup.document;
  630.         stylePopup.write(strMenu);
  631.         stylePopup.close();
  632.         var e = fn_arguments[0];
  633.         nEventX = e.pageX;
  634.         nEventY = e.pageY;
  635.         _BSPSGetClientSize();
  636.         if (nEventY + layerPopup.clip.height + 20 < window.pageYOffset + gBsClientHeight) {
  637.             nEventY += 20;
  638.         } else {
  639.             nEventY = gBsClientHeight + window.pageYOffset- layerPopup.clip.height - 20;
  640.         }
  641.         layerPopup.top = nEventY;
  642.  
  643.         if (nEventX + layerPopup.clip.width + 20 > gBsClientWidth + window.pageXOffset) {
  644.             if (gBsClientWidth + window.pageXOffset - layerPopup.clip.width < 20) {
  645.                 nEventX = 5;
  646.             } else {
  647.                 nEventX = gBsClientWidth + window.pageXOffset - layerPopup.clip.width - 20;
  648.             }
  649.         } else {
  650.             nEventX += 20;
  651.         }
  652.  
  653.         layerPopup.left = nEventX;
  654.  
  655.         layerPopup.visibility = "show";
  656.  
  657.         window.captureEvents(Event.MOUSEDOWN);
  658.         if (!gOlddocumentClick && document.onmousedown)
  659.             gOlddocumentClick = document.onmousedown;
  660.         window.onmousedown = PopupMenu_HandleClick;
  661.     }
  662.  
  663.     window.gbInPopupMenu = true;
  664.     window.gbPopupMenuTimeoutExpired = false;
  665.     setTimeout("PopupMenu_Timeout();", 100);
  666.     return false;
  667. }
  668.  
  669. function PopupMenu_Timeout()
  670. {
  671.     window.gbPopupMenuTimeoutExpired = true;
  672. }
  673.  
  674. function PopupMenu_Over(e)
  675. {
  676.     if (gbBsIE4||gbBsOpera7)
  677.         e.srcElement.className = "PopupOver";
  678.     else if (gbBsNS6)
  679.         e.target.parentNode.className = "PopupOver";
  680.     return;
  681. }
  682.  
  683. function PopupMenu_Out(e)
  684. {
  685.     if (gbBsIE4||gbBsOpera7)
  686.         e.srcElement.className = "PopupNotOver";
  687.     else if (gbBsNS6)
  688.         e.target.parentNode.className = "PopupNotOver";
  689.     return;
  690. }
  691.  
  692. function PopupMenu_HandleClick(e)
  693. {
  694.     if (window.gbPopupMenuTimeoutExpired) {
  695.         window.gbInPopupMenu = false;
  696.         if (gbBsNS4 && !gbBsNS6) {
  697.             window.releaseEvents(Event.MOUSEDOWN);
  698.         }
  699.  
  700.         var layerPopup = null;
  701.         if (gbBsNS4&&!gbBsNS6) {
  702.             layerPopup = document.layers.PopupMenu;
  703.             layerPopup.visibility = "hide";
  704.         } else {
  705.             layerPopup = getElement("PopupMenu");
  706.             layerPopup.style.visibility = "hidden";
  707.         }
  708.     
  709.         if (gOlddocumentClick)
  710.         {
  711.             if (gbBsNS4 && !gbBsNS6)
  712.                 document.onmousedown = gOlddocumentClick;
  713.             else
  714.                 document.onclick = gOlddocumentClick;
  715.         }
  716.     }
  717.     return;
  718. }
  719.  
  720. function BSSCPopup_ClickMac()
  721. {
  722.     if ((!DHTMLPopupSupport()) && (gbBsIE4 || gbBsOpera7))
  723.     {    
  724.         var bClickOnAnchor = false;
  725.         var el;
  726.         if ((window.event != null) &&
  727.             (window.event.srcElement != null))
  728.         {
  729.             el = window.event.srcElement;
  730.             while (el != null)
  731.             {
  732.                 if ((el.tagName == "A") || (el.tagName == "AREA"))     {
  733.                     bClickOnAnchor = true;
  734.                     break;
  735.                 }
  736.                 if (el.tagName == "BODY") {
  737.                     break;
  738.                 }
  739.                 el = getParentNode(el);
  740.             }
  741.         }
  742.         if (BSSCPopup_IsPopup())
  743.         {
  744.             if (!bClickOnAnchor) {
  745.                 parent.window.gPopupWindow = null;
  746.                 self.close();
  747.             }
  748.         }
  749.         else
  750.         {
  751.             bClosePopupWindow = true;
  752.             if ((bClickOnAnchor) &&
  753.                 (el.href) &&
  754.                 ((el.href.indexOf("javascript:BSSCPopup") != -1) || (el.href.indexOf("javascript:null") != -1) || (el.href.indexOf("javascript:void(0)") != -1)))
  755.             {
  756.                 bClosePopupWindow = false;
  757.             }
  758.             if (bClosePopupWindow)
  759.             {
  760.                 if (window.gPopupWindow != null && !window.gPopupWindow.closed )
  761.                 {
  762.                     window.gPopupWindow.close();
  763.                 }
  764.             }
  765.         }
  766.     }
  767. }
  768.  
  769. function BsPopupOnClick()
  770. {
  771.     if (!gbBsIE4 && !gbBsOpera7)
  772.         return;
  773.  
  774.     BSSCPopup_ClickMac();
  775. }
  776.  
  777. function _BSSCOnError(message)
  778. {
  779.     if(-1 != message.indexOf("denied") 
  780.         || -1 != message.indexOf("Object required"))
  781.      return true;
  782. }
  783.  
  784. //End to support previous relative topics
  785.  
  786. /// Section End - General and relative topics (JavaScript 1.0)
  787.  
  788. /// Section Begin  - Popup (JavaScript 1.0)
  789. //Begin to support previous popup functions
  790.  
  791. //variables used to isolate the browser type
  792. var gBsStyVisShow    = null;
  793. var gBsStyVisHide    = null;
  794. var gBsClientWidth    = 640;
  795. var gBsClientHeight = 480;
  796.  
  797. // here is the varible for judge popup windows size. these parameter is for IE5.0, it may need adjust for others.
  798. var gBRateH_W        = 0.618; // 1.618 Golden cut.
  799. var gBMaxXOfParent    = 0.8; 
  800. var gBMaxYOfParent    = 0.8;
  801. var gBscrollHeight   = 16;
  802. var gBscrollWidth   =  16;
  803. var gBpermitXDelta    = 3;
  804. var gBpermitYDelta    = 3;
  805.  
  806.  
  807. var arrayPopupURL = new Array();
  808. var arrayAbsPopupURL = new Array();
  809.  
  810. var arrayDirty = new Array();
  811.  
  812. function setAbsPopupURL(nIndex, strURL)
  813. {
  814.     arrayAbsPopupURL[nIndex] = strURL;
  815. }
  816.  
  817. function getAbsPopupURL(nIndex)
  818. {
  819.     if (nIndex == -1 || arrayAbsPopupURL.length <= nIndex) return null;
  820.     else 
  821.         return arrayAbsPopupURL[nIndex];
  822. }
  823.  
  824. function getPopupURL(nIndex)
  825. {
  826.     if (nIndex == -1 || arrayPopupURL.length <= nIndex) return null;
  827.     else 
  828.         return arrayPopupURL[nIndex];
  829. }
  830.  
  831. function getPopupID(nIndex)
  832. {
  833.     return gstrPopupID + nIndex;
  834. }
  835.  
  836. function getPopupShadowID(nIndex)
  837. {
  838.     return gstrPopupShadowID + nIndex;
  839. }
  840.  
  841. function getPopupTopicID(nIndex)
  842. {
  843.     return gstrPopupTopicID + nIndex;
  844. }
  845.  
  846. function getPopupIFrameID(nIndex)
  847. {
  848.     return gstrPopupIFrameID + nIndex;
  849. }
  850.  
  851. function getPopupIFrameName(nIndex)
  852. {
  853.     return gstrPopupIFrameName + nIndex;
  854. }
  855.  
  856.  
  857. function getPopupTopicStyle(nIndex)
  858. {
  859.     return getElement(getPopupTopicID(nIndex)).style;
  860. }
  861.  
  862. function getPopupShadowStyle(nIndex)
  863. {
  864.     return getElement(getPopupShadowID(nIndex)).style;
  865. }
  866.  
  867. function getPopupIFrame(nIndex)
  868. {
  869.     if (gbBsNS6)
  870.         return eval("window.frames['" + getPopupIFrameName(nIndex) + "']");
  871.     else
  872.         return eval("document.frames['" + getPopupIFrameName(nIndex) + "']");
  873. }
  874.  
  875. function getPopupDivStyle(nIndex)
  876. {
  877.     return getElement(getPopupID(nIndex)).style;
  878. }
  879.  
  880. function getPopupIFrameStyle(nIndex)
  881. {
  882.     return getElement(getPopupIFrameID(nIndex)).style;
  883. }
  884.  
  885.  
  886. function findDiv(strURL)
  887. {
  888.     for (var i = 0; i < arrayPopupURL.length; i ++ ) {
  889.         if (arrayPopupURL[i] == strURL) {
  890.             return i;
  891.         }
  892.     }
  893.     return -1;
  894. }
  895.  
  896. var gnToken = -1;
  897. function takeToken()
  898. {
  899.     gnToken ++;
  900.     if (gnToken > 10000) gnToken = 0;
  901.     return gnToken;
  902. }
  903.  
  904. function IsValidToken(nToken)
  905. {
  906.     return (gnToken == nToken);
  907. }
  908.  
  909. function addDiv(strURL)
  910. {
  911.     for (var i = 0; i < arrayPopupURL.length; i ++) {
  912.         if (arrayPopupURL[i] == null) {
  913.             arrayPopupURL[i] = strURL;
  914.             return i;
  915.         }
  916.     }    
  917.     arrayPopupURL[i] = strURL;
  918.     arrayDirty[i] = true;
  919.     return i;
  920. }
  921.  
  922. function setDirty()
  923. {
  924.     for (var i = 0; i < arrayPopupURL.length; i ++ )
  925.         arrayDirty[i] = true;
  926. }
  927.  
  928. function IsDirty(nIndex)
  929. {
  930.     if (nIndex == -1)
  931.         return true;
  932.     else 
  933.         if (arrayDirty.length > nIndex) 
  934.             return arrayDirty[nIndex];
  935.         else
  936.             return true;
  937. }
  938.  
  939. function hideAll()
  940. {
  941.     for (var i = 0; i < arrayPopupURL.length; i ++ )
  942.     {
  943.         getPopupDivStyle(i).visibility = gBsStyVisHide;
  944.         getPopupIFrameStyle(i).visibility = gBsStyVisHide;
  945.     }
  946. }
  947.  
  948. function getCurrentPopupIFrame()
  949. {
  950.     for (var i = 0; i < arrayPopupURL.length; i ++)
  951.         if (getPopupDivStyle(i).visibility == gBsStyVisShow)
  952.             return getPopupIFrame(i);
  953.     return null;
  954. }
  955.  
  956. function setClear(nIndex)
  957. {
  958.     if (nIndex != -1)
  959.         arrayDirty[nIndex] = false;
  960. }
  961.  
  962. function _BSSCCreatePopupDiv(strURL)
  963. {
  964.     var nIndex = findDiv(strURL);
  965.     if (nIndex == -1 ) {
  966.         nIndex = addDiv(strURL);
  967.         BsPopup_CreateDiv(nIndex);
  968.     }
  969.     else {
  970.         if (IsDirty(nIndex)) {
  971.             if("object" == typeof(getPopupIFrame(nIndex).document))
  972.                 getPopupIFrame(nIndex).document.location.href = strURL;
  973.         }
  974.     }
  975.     return nIndex;
  976. }
  977.  
  978. //Here is the browser type 
  979. function _BSPSGetBrowserInfo()
  980. {
  981.     if (gbBsNS4&&!gbBsNS6)
  982.     {
  983.         gBsStyVisShow    = "show";
  984.         gBsStyVisHide    = "hide";
  985.     }
  986.     else
  987.     {
  988.         gBsStyVisShow    = "visible";
  989.         gBsStyVisHide    = "hidden";
  990.     }
  991. }
  992.  
  993. _BSPSGetBrowserInfo();
  994.  
  995. //Get client size info
  996. function _BSPSGetClientSize()
  997. {
  998.     if (gbBsNS4||gbBsKonqueror3||gbBsSafari)
  999.     {
  1000.         gBsClientWidth    = innerWidth;
  1001.         gBsClientHeight = innerHeight;
  1002.     }
  1003.     else if (gbBsIE4 || gbBsOpera7)
  1004.     {
  1005.         gBsClientWidth    = document.body.clientWidth;
  1006.         gBsClientHeight = document.body.clientHeight;
  1007.     }
  1008. }
  1009.  
  1010. var gstrPopupID = 'BSSCPopup';
  1011. var gstrPopupShadowID = 'BSSCPopupShadow';
  1012. var gstrPopupTopicID = 'BSSCPopupTopic';
  1013. var gstrPopupIFrameID = 'BSSCPopupIFrame';
  1014. var gstrPopupIFrameName = 'BSSCPopupIFrameName';
  1015.  
  1016. var gstrPopupSecondWindowName = 'BSSCPopup';
  1017.  
  1018. var gPopupWindow = null;
  1019. var gnPopupClickX = 0;
  1020. var gnPopupClickY = 0;
  1021.  
  1022. var gnPopupScreenClickX = 0;
  1023. var gnPopupScreenClickY = 0;
  1024.  
  1025. var gbPopupTimeoutExpired = false;
  1026.  
  1027. function DHTMLPopupSupport()
  1028. {
  1029.     if (((gbBsIE4) && (!gbBsMac))||gbBsOpera7|| gbBsNS7) {
  1030.         return true;
  1031.     }
  1032.     return false;
  1033. }
  1034.  
  1035. function BSSCPopup_IsPopup()
  1036. {
  1037.     if (DHTMLPopupSupport() && (this.name.indexOf(gstrPopupIFrameName) != -1)) {
  1038.         return true;
  1039.     } else if ((gbBsNS4 || gbBsIE4 || gbBsOpera7) && (this.name.indexOf(gstrPopupID) != -1)) {
  1040.         return true;
  1041.     } else {
  1042.         return false;
  1043.     }
  1044. }
  1045.  
  1046. // If there is a hyperlink in a popup window, display the hyperlink in
  1047. // the original window. (bsscright)
  1048. if (BSSCPopup_IsPopup() && !gbBsIE4 && !gbBsOpera7) {
  1049.     document.write("<base target=\"bsscright\">");
  1050. }
  1051.  
  1052. // Local functions.
  1053. function BsPopup_CreateDiv(nIndex)
  1054. {
  1055.     if(!DHTMLPopupSupport())
  1056.         return;
  1057.     // DO NOT SET Width and height for the div, otherwize it will make IE4 popup do not work when view the topic alone.
  1058.     var strPopupDiv = "<DIV ID='" + getPopupID(nIndex) + "' STYLE='position:absolute; top:-100; left:0; z-index:600; visibility:hidden;'>";
  1059.     strPopupDiv += "<DIV ID='" + getPopupShadowID(nIndex) + "' STYLE=\"position:absolute;top:0; left:0;  background-color:#C0C0C0;\"></DIV>";
  1060.     strPopupDiv += "<DIV ID='" + getPopupTopicID(nIndex) + "' STYLE=\"position:absolute;top:0; left:0;  background-color:#FFFFFF;border:1px #000000 outset;\">";
  1061.     strPopupDiv += "<IFRAME title=\"Popup Window\" ID='" + getPopupIFrameID(nIndex) + "' name='" + getPopupIFrameName(nIndex) + "' src = '" + getPopupURL(nIndex) + "' frameborder=0 scrolling=auto></IFRAME>";
  1062.     strPopupDiv += "</DIV></DIV>";
  1063.  
  1064.     var objBody = getElementsByTag(document, "BODY")[0];
  1065.     if( typeof(objBody) != "object" )
  1066.         return;
  1067.  
  1068.     insertAdjacentHTML(objBody, "beforeEnd", strPopupDiv);
  1069. }
  1070.  
  1071. function handleLoadNS()
  1072. {
  1073.     if (this.id)
  1074.     {
  1075.         var nIndex = parseInt(this.id.substring(gstrPopupIFrameID.length));
  1076.         BSSCPopup_PostWork(nIndex);
  1077.     }
  1078. }
  1079.  
  1080. function BSSCPopup_PostWork(nIndex)
  1081. {
  1082.     getPopupDivStyle(nIndex).visibility = gBsStyVisShow;
  1083.     getPopupIFrameStyle(nIndex).visibility =gBsStyVisShow;
  1084.  
  1085.     setClear(nIndex);
  1086.     window.gbPopupTimeoutExpired = true;
  1087.  
  1088.     BSSCPopup_ChangeTargettoParent(getPopupIFrame(nIndex).document);
  1089.     if (gbBsNS6)
  1090.         getPopupIFrame(nIndex).document.body.addEventListener("click",BSSCPopupClicked,false);
  1091.     else
  1092.         getPopupIFrame(nIndex).document.body.onclick = BSSCPopupClicked;
  1093.  
  1094.     if (!gbOrignalOnMouseDown && document.onmousedown)
  1095.         gbOrignalOnMouseDown = document.onmousedown;
  1096.  
  1097.     if (gbBsNS6)
  1098.         document.addEventListener("mousedown", BSSCPopupParentClicked,false);
  1099.     else
  1100.         document.onmousedown = BSSCPopupParentClicked;
  1101. }
  1102.  
  1103. function BSSCPopup_Timeout(nIndex, nToken)
  1104. {
  1105.     if (!IsValidToken(nToken)) return;
  1106.  
  1107.     if (gbBsNS6||((getPopupIFrame(nIndex).document.readyState == "complete") &&
  1108.         (getPopupIFrame(nIndex).document.body != null))) {
  1109.         BSSCPopup_PostWork(nIndex);
  1110.     } else {
  1111.         setTimeout("BSSCPopup_Timeout(" + nIndex + "," + nToken + ")", 100);
  1112.     }
  1113. }
  1114.  
  1115. // VH 08/10/00 
  1116. // do not change target to parent if the href is using javascript
  1117. function BSSCPopup_ChangeTargettoParent(tagsObject)
  1118. {
  1119.     var collA = getElementsByTag(tagsObject, "A");
  1120.     BSSCPopup_ChangeTargettoParent2(collA);
  1121.  
  1122.     var collIMG = getElementsByTag(tagsObject,"IMG");
  1123.     BSSCPopup_ChangeTargettoParent2(collIMG);
  1124. }
  1125.  
  1126. function BSSCPopup_ChangeTargettoParent2(colls)
  1127. {
  1128.     if (colls != null)  {
  1129.         for (var j = 0; j < colls.length; j ++ )
  1130.         {
  1131.             var strtemp = colls[j].href;
  1132.             if (strtemp)
  1133.             {
  1134.                 strtemp = strtemp.toLowerCase();
  1135.                 if (strtemp.indexOf("javascript:") == -1)
  1136.                 if (colls[j].target == "")
  1137.                     colls[j].target = "_parent";
  1138.             }
  1139.         }
  1140.     }
  1141. }
  1142.  
  1143. function BSPSPopupTopicWinHelp(strURL)
  1144. {
  1145.     _BSSCPopup(strURL);
  1146.     return;
  1147. }
  1148.  
  1149. function _BSSCPopup(strURL, width, height)
  1150. {
  1151.     var cuswidth = 0;
  1152.     var cusheight = 0;
  1153.     if ("undefined" != typeof(width) && "undefined" != typeof(height)) {
  1154.         cuswidth = width;
  1155.         cusheight= height;
  1156.     }
  1157.     
  1158.     if (DHTMLPopupSupport()) {
  1159.         var nToken = takeToken(); // take  token first.
  1160.         var nIndex = _BSSCCreatePopupDiv(strURL);
  1161.         window.gbPopupTimeoutExpired = false;
  1162.         var ntWidth = gBsClientWidth;
  1163.         var ntHeight = gBsClientHeight;
  1164.         _BSPSGetClientSize();
  1165.         if (ntWidth != gBsClientWidth || ntHeight != gBsClientHeight) {
  1166.             setDirty();
  1167.         }
  1168.  
  1169.         if (IsDirty(nIndex)) {
  1170.             if (gbBsMac || gbBsNS4) {
  1171.                 setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight  +")", 400);
  1172.             } else {
  1173.                 setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 100);
  1174.             }
  1175.         }
  1176.         else {
  1177.             MoveDivAndShow(nIndex ,nToken, cuswidth, cusheight);
  1178.         }
  1179.     } else {
  1180.         _BSSCPopup2(strURL, cuswidth, cusheight);
  1181.     }
  1182.     return;
  1183. }
  1184.  
  1185. if (gbBsIE55)
  1186. {
  1187.     var ehlpdhtm_fOldBefureUnload = window.onbeforeunload;
  1188.     var gnBsUnload=0;
  1189.     window.onbeforeunload = window_BUnload;
  1190. }
  1191.     
  1192. function window_BUnload()
  1193. {
  1194.     gnBsUnload++;
  1195.     if (gnBsUnload>1)
  1196.         return;
  1197.     for (var i = 0; i < arrayPopupURL.length; i ++)
  1198.         removeThis(document.all(getPopupID(i)));
  1199.     arrayPopupURL.length = 0;    
  1200.     if (ehlpdhtm_fOldBefureUnload)
  1201.         ehlpdhtm_fOldBefureUnload();
  1202. }
  1203.  
  1204. function _BSSCPopup2(strURL, width, height)
  1205. {
  1206.     if (gbBsOpera6&&gbBsMac)
  1207.     {
  1208.         var wmTemp = window.open(document.location.href, gstrPopupSecondWindowName);
  1209.         wmTemp.close();
  1210.         setTimeout("_BSSCPopup3(\""+strURL+"\","+width+","+height+");",100);
  1211.     }
  1212.     else
  1213.         _BSSCPopup3(strURL, width, height);
  1214. }
  1215.         
  1216. function _BSSCPopup3(strURL, width, height)
  1217. {
  1218.     if (window.name == gstrPopupSecondWindowName) {
  1219.         window.location = strURL;
  1220.     } else {
  1221.         if (!gbBsMac || !gbBsNS4) {
  1222.             BSSCHidePopupWindow();
  1223.         }
  1224.         var nX = 0;
  1225.         var nY = 0;
  1226.         var nHeight = 300;
  1227.         var nWidth = 400;
  1228.         if (width > 0 && height > 0) {
  1229.             nHeight = height;
  1230.             nWidth = width;
  1231.         }
  1232.         _BSPSGetClientSize();
  1233.  
  1234.         nX = window.gnPopupScreenClickX;
  1235.         nY = window.gnPopupScreenClickY;
  1236.  
  1237.         if (nY + nHeight + 40 > screen.availHeight) {
  1238.             nY = screen.availHeight - nHeight - 40;
  1239.         }
  1240.         if (nX + nWidth + 40 > screen.availWidth) {
  1241.             nX = screen.availWidth - nWidth - 40;
  1242.         }
  1243.  
  1244.         // Launch a separate window
  1245.         var strParam="titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes";
  1246.         if (gbBsNS) {
  1247.             if (gbBsNS6) {
  1248.                 strParam += ",Height=" + nHeight + ",Width=" + nWidth;
  1249.                 strParam += ",screenX=" + nX + ",screenY=" + nY;
  1250.                 strParam += ",dependent=yes";
  1251.             }
  1252.             else {
  1253.                 strParam += ",OuterHeight=" + nHeight + ",OuterWidth=" + nWidth;
  1254.                 strParam += ",screenX=" + nX + ",screenY=" + nY;
  1255.                 strParam += ",dependent=yes";
  1256.             }
  1257.         }
  1258.         else {
  1259.             strParam += ",height=" + nHeight + ",width=" + nWidth;
  1260.             strParam += ",left=" + nX + ",top=" + nY;
  1261.         }
  1262.         if (gbBsSafari)
  1263.         {
  1264.             if (window.gPopupWindow)
  1265.                 window.gPopupWindow.close();        
  1266.             window.gPopupWindow = window.open(strURL, "", strParam);
  1267.             window.gPopupWindow.name = gstrPopupSecondWindowName;
  1268.             window.gPopupWindow.moveTo(nX, nY);
  1269.             widnow.gPopupWindow.document.location.reload();
  1270.         }    
  1271.         else
  1272.         {
  1273.             var wmTemp=null;
  1274.             if (gbBsKonqueror3)
  1275.             {
  1276.                 if (window.gPopupWindow)
  1277.                     window.gPopupWindow.close();
  1278.             }
  1279.             if (gbBsOpera&&gbBsMac)
  1280.             {
  1281.                 wmTemp= window.open(document.location.href, "Temp", strParam);
  1282.             }
  1283.             window.gPopupWindow = window.open(strURL, gstrPopupSecondWindowName, strParam);
  1284.             if (!gbBsIE)
  1285.                 window.gPopupWindow.focus();
  1286.                 
  1287.             if (wmTemp)
  1288.                 wmTemp.close();
  1289.         }
  1290.  
  1291.         if (gbBsNS4)
  1292.             setEventHandle();
  1293.         else if (gbBsIE4 || gbBsOpera7||gbBsKonqueror3)
  1294.             setTimeout("setPopupFocus();", 100);
  1295.     }
  1296.     return;
  1297. }
  1298.  
  1299. function setEventHandle()
  1300. {
  1301.     window.gPopupWindow.captureEvents(Event.CLICK | Event.BLUR);
  1302.     window.gPopupWindow.onclick = NonIEPopup_HandleClick;
  1303.     window.gPopupWindow.onblur = NonIEPopup_HandleBlur;
  1304. }
  1305.  
  1306. function setPopupFocus()
  1307. {
  1308.     window.gPopupWindow.focus();
  1309. }
  1310.  
  1311. function NonIEPopup_HandleBlur(e)
  1312. {
  1313.     window.gPopupWindow.focus();
  1314. }
  1315.  
  1316. function NonIEPopup_HandleClick(e)
  1317. {
  1318.     // Because navigator will give the event to the handler before the hyperlink, let's
  1319.     // first route the event to see if we are clicking on a Popup menu in a popup.
  1320.     document.routeEvent(e);
  1321.  
  1322.     // If a popup menu is active then don't do anything with the click
  1323.     if (window.gPopupWindow.gbInPopupMenu) {
  1324.         window.gPopupWindow.captureEvents(Event.CLICK);
  1325.         window.gPopupWindow.onclick = NonIEPopup_HandleClick;
  1326.         return false;
  1327.     }
  1328.  
  1329.     // Close the popup window
  1330.     if(e.target.href)
  1331.     {
  1332.         if(e.target.href.indexOf("javascript:")==-1) 
  1333.         {
  1334.             if (e.target.target=="")
  1335.                 window.location.href = e.target.href;
  1336.             else
  1337.                 window.open(e.target.href, e.target.target);
  1338.             this.close();
  1339.         }
  1340.     } 
  1341.     else
  1342.         this.close();
  1343.     return false;
  1344. }
  1345.  
  1346. function BSSCPopup_AfterLoad(nIndex, nToken, cuswidth, cusheight)
  1347. {    
  1348.     if (!window.getPopupIFrame(nIndex).document) {
  1349.         _BSSCPopup2(getPopupURL(nIndex), cuswidth, cusheight);
  1350.         return;
  1351.     }
  1352.     
  1353.     if (!IsValidToken(nToken)) return;
  1354.  
  1355.     if (gbBsNS6)
  1356.     {
  1357.         setAbsPopupURL(nIndex, window.getPopupIFrame(nIndex).document.location.href); // change URL to abs url.
  1358.         BSSCPopup_ResizeAfterLoad(nIndex, nToken, cuswidth, cusheight);
  1359.         return;
  1360.     }
  1361.     
  1362.     if ((window.getPopupIFrame(nIndex).document.readyState == "complete") &&
  1363.         (window.getPopupIFrame(nIndex).document.body != null)) {
  1364.             if (window.getPopupIFrame(nIndex).document.location.href.indexOf("about:blank") != -1) { // add this check. IE will use about:blank" as the default vaule for Iframe.
  1365.                 window.getPopupIFrame(nIndex).document.location = getPopupURL(nIndex);
  1366.                 setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 200);
  1367.             }
  1368.             else
  1369.                 {
  1370.                     setAbsPopupURL(nIndex, window.getPopupIFrame(nIndex).document.location.href); // change URL to abs url.
  1371.                     BSSCPopup_ResizeAfterLoad(nIndex, nToken, cuswidth, cusheight);
  1372.                 }
  1373.     } else {
  1374.         setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 200);
  1375.     }
  1376. }
  1377.  
  1378. function BSSCPopup_ResizeAfterLoad(nIndex, nToken, cuswidth, cusheight)
  1379. {
  1380.     if (window.gbPopupTimeoutExpired) return;
  1381.  
  1382.     if (!IsValidToken(nToken)) return;
  1383.  
  1384.     getPopupDivStyle(nIndex).visibility = gBsStyVisHide;
  1385.     getPopupIFrameStyle(nIndex).visibility = gBsStyVisHide;
  1386.  
  1387.     // Determine the width and height for the window
  1388.     _BSPSGetClientSize();
  1389.  
  1390.     var size = new BSSCSize(0, 0);
  1391.  
  1392.     if (cuswidth <= 0 || cusheight <= 0)
  1393.         BSSCGetContentSize(window.getPopupIFrame(nIndex), size);
  1394.     else {
  1395.         size.x = cuswidth;
  1396.         size.y = cusheight;
  1397.     }
  1398.  
  1399.     // Determine the width and height for the window
  1400.     var nWidth = size.x;
  1401.     var nHeight = size.y;
  1402.  
  1403.     // for small popup size, we should allow any size.
  1404.     // The popup size should be ok if bigger than 0
  1405.     if (nWidth < 0 || nHeight < 0) return;     // there must be something terribly wrong.        
  1406.  
  1407.     getPopupDivStyle(nIndex).width = nWidth;
  1408.     getPopupDivStyle(nIndex).height = nHeight;
  1409.  
  1410.     getPopupShadowStyle(nIndex).width = nWidth;
  1411.     getPopupShadowStyle(nIndex).height = nHeight;
  1412.     getPopupTopicStyle(nIndex).width = nWidth;
  1413.     getPopupTopicStyle(nIndex).height = nHeight;
  1414.     if (gbBsIE55)
  1415.     {
  1416.         getPopupShadowStyle(nIndex).width = nWidth + 2;
  1417.         getPopupShadowStyle(nIndex).height = nHeight + 2;
  1418.         getPopupTopicStyle(nIndex).width = nWidth + 2;
  1419.         getPopupTopicStyle(nIndex).height = nHeight + 2;
  1420.     }
  1421.  
  1422.     getPopupIFrameStyle(nIndex).width = nWidth;
  1423.     getPopupIFrameStyle(nIndex).height = nHeight;
  1424.     if (gbBsIE55 || gbBsNS6)
  1425.     {
  1426.         getPopupIFrameStyle(nIndex).top = 0;
  1427.         getPopupIFrameStyle(nIndex).left = 0;
  1428.     }
  1429.     
  1430.     var strURL = getPopupURL(nIndex);
  1431.     if (strURL.indexOf("#") != -1&&gbBsNS6)
  1432.         getPopupIFrame(nIndex).location.reload();
  1433.     else if (strURL.indexOf("#") != -1||gbBsNS6)
  1434.         getPopupIFrame(nIndex).location.href = strURL;  // reload again, this will fix the bookmark misunderstand in IE5.
  1435.         
  1436.     MoveDivAndShow(nIndex, nToken, cuswidth, cusheight);
  1437. }
  1438.  
  1439. function getScrollLeft()
  1440. {
  1441.     if (document.body.scrollLeft)
  1442.         return document.body.scrollLeft;
  1443.     else if (window.pageXOffset)
  1444.         return window.pageXOffset;
  1445.     else
  1446.         return 0;
  1447. }
  1448.  
  1449. function getScrollTop()
  1450. {
  1451.     if (document.body.scrollTop)
  1452.         return document.body.scrollTop;
  1453.     else if (window.pageYOffset)
  1454.         return window.pageYOffset;
  1455.     else
  1456.         return 0;
  1457. }
  1458.  
  1459. function getScrollHeight(thisWindow)
  1460. {
  1461.     if(typeof(thisWindow.document.body.scrollHeight) != "undefined")
  1462.         return thisWindow.document.body.scrollHeight;
  1463.     else 
  1464.         return 0;
  1465. }
  1466.  
  1467. function MoveDivAndShow(nIndex, nToken, cuswidth, cusheight)
  1468. {
  1469.     if (window.getPopupIFrame(nIndex).document.location.href != getAbsPopupURL(nIndex)) { // if redirect, reload again.
  1470.             window.getPopupIFrame(nIndex).document.location = getPopupURL(nIndex);
  1471.             setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 200);
  1472.             return;
  1473.     }
  1474.  
  1475.     // Determine the position of the window
  1476.     var nClickX = window.gnPopupClickX;
  1477.     var nClickY = window.gnPopupClickY;
  1478.     var nTop = 0;
  1479.     var nLeft = 0;
  1480.  
  1481.     var nWidth = parseInt(getPopupDivStyle(nIndex).width);
  1482.     var nHeight = parseInt(getPopupDivStyle(nIndex).height);
  1483.  
  1484.     if (nClickY + nHeight + 20 < gBsClientHeight + getScrollTop()) {
  1485.         nTop = nClickY + 10;
  1486.     } else {
  1487.         nTop = (getScrollTop() + gBsClientHeight) - nHeight - 20;
  1488.     }
  1489.     if (nClickX + nWidth < gBsClientWidth + getScrollLeft()) {
  1490.         nLeft = nClickX;
  1491.     } else {
  1492.         nLeft = (getScrollLeft() + gBsClientWidth) - nWidth - 8;
  1493.     }
  1494.  
  1495.     if (nTop < getScrollTop()) nTop  = getScrollTop() + 1;
  1496.     if (nLeft< getScrollLeft())  nLeft = getScrollLeft() + 1;
  1497.  
  1498.     getPopupDivStyle(nIndex).left = nLeft;
  1499.     getPopupDivStyle(nIndex).top = nTop;
  1500.  
  1501.     // Set the location of the background blocks
  1502.     getPopupShadowStyle(nIndex).left = 6;
  1503.     getPopupShadowStyle(nIndex).top = 6;
  1504.     if (gbBsIE55)
  1505.     {
  1506.         getPopupShadowStyle(nIndex).left = 4;
  1507.         getPopupShadowStyle(nIndex).top = 4;
  1508.     }
  1509.  
  1510.     if (gbBsMac&&gbBsIE4) {
  1511.         // Total hack on the iMac to get the IFrame to position properly
  1512.         getPopupIFrameStyle(nIndex).pixelLeft = 100;
  1513.         getPopupIFrameStyle(nIndex).pixelLeft = 0;
  1514.         // Explicitly call BSSCOnLoad because the Mac doesn't seem to do it
  1515.         getPopupIFrame(nIndex).window.BSSCOnLoad();
  1516.     }
  1517.  
  1518.     if (gbBsNS6&&IsDirty(nIndex))
  1519.         getElement(getPopupIFrameID(nIndex)).addEventListener("load", handleLoadNS, false);
  1520.     else
  1521.         BSSCPopup_Timeout(nIndex , nToken );
  1522.     return;
  1523. }
  1524.  
  1525. function    BSSCSize(x, y)
  1526. {
  1527.     this.x = x;
  1528.     this.y = y;
  1529. }
  1530.  
  1531. function BSSCGetContentSize(thisWindow, size)
  1532. {
  1533.     if (!gbBsIE4 && !gbBsOpera7 && !gbBsNS4)
  1534.         return;
  1535.  
  1536.     if ((gbBsMac&&gbBsIE4)||gbBsOpera7) {
  1537.         size.x = 320;
  1538.         size.y = 180;
  1539.         return;
  1540.     }
  1541.  
  1542.     // Resize the width until it is wide enough to handle the content
  1543.     // The trick is to start wide and determine when the scrollHeight changes
  1544.     // because then we know a scrollbar is necessary. We can then go back
  1545.     // to the next widest size (for no scrollbar)
  1546.  
  1547.     var ClientRate = gBsClientHeight / gBsClientWidth;
  1548.  
  1549.     
  1550.     var GoldenSize = new BSSCSize(0,0);
  1551.     GoldenSize.x = gBsClientWidth * gBMaxXOfParent;
  1552.     GoldenSize.y = gBsClientHeight *gBMaxYOfParent ;
  1553.  
  1554.     if (ClientRate > gBRateH_W) {
  1555.         GoldenSize.y = GoldenSize.x * gBRateH_W;
  1556.     }
  1557.     else {
  1558.         GoldenSize.x = GoldenSize.y / gBRateH_W;
  1559.     }
  1560.  
  1561.     // Try to using parent specified max x.
  1562.     var x = 0;
  1563.     var maxgoldx = GoldenSize.x;
  1564.     var maxx = gBsClientWidth * gBMaxXOfParent;
  1565.     
  1566.     // This double resize causes the document to re-render (and we need it to)
  1567.     if (!gbBsIE5 && !gbBsNS4)
  1568.         thisWindow.moveTo(10000,10000); // this is used to fix the flash on IE4.
  1569.         
  1570.     thisWindow.resizeTo(1, 1);
  1571.     thisWindow.resizeTo(1, 1);
  1572.     
  1573.     thisWindow.resizeTo(maxgoldx, getScrollHeight(thisWindow) + gBscrollHeight);
  1574.     thisWindow.resizeTo(maxgoldx, getScrollHeight(thisWindow) + gBscrollHeight);
  1575.  
  1576.         
  1577.     var miny = getScrollHeight(thisWindow) + gBscrollHeight;
  1578.     
  1579.     if (miny > GoldenSize.y) // the popup does not fix in the parent wanted golden area. so try to expand itself as large as it can
  1580.     {
  1581.         
  1582.         thisWindow.resizeTo(maxx , getScrollHeight(thisWindow) + gBscrollHeight);
  1583.         thisWindow.resizeTo(maxx , getScrollHeight(thisWindow) + gBscrollHeight);
  1584.         
  1585.         miny =     getScrollHeight(thisWindow) + gBscrollHeight;
  1586.         maxy = gBsClientHeight * gBMaxYOfParent;
  1587.         
  1588.         if (miny > maxy) { // the popup must have a scroll, OK let it be.
  1589.             miny = maxy;
  1590.             size.x = maxx;
  1591.             size.y = maxy;
  1592.             thisWindow.document.body.scroll = 'yes'; // At this time we do want to show scroll any more. so it will looks better a little.
  1593.         }
  1594.         else { // popup still can fit in the parent area by someway. now we choose the same h/w rate as parent.
  1595.             size.y = miny;
  1596.             
  1597.             //  downsize from maxx , now I try to using binary divide.
  1598.             x = maxx;
  1599.             deltax = -maxx/2;
  1600.             //j = 0;
  1601.             while (true) {
  1602.                 x = x + deltax;
  1603.                 thisWindow.resizeTo(x, miny);
  1604.                 thisWindow.resizeTo(x, miny);
  1605.                 diffy = getScrollHeight(thisWindow) + gBscrollHeight - x * ClientRate;
  1606.                 if (diffy >  gBpermitYDelta ) // it is higher than wanted, so x need to be wide a little bitter
  1607.                     deltax = Math.abs(deltax) /2;
  1608.                 else if (diffy <  -gBpermitYDelta) // it is shorter than wanted, so x need to be narrow a little bitter
  1609.                     deltax = -Math.abs(deltax) /2;
  1610.                 else 
  1611.                     // the y is close enough to wanted.
  1612.                     break;
  1613.                 if (Math.abs(deltax) < gBpermitXDelta) // the next change is too slight and it can be ignore.
  1614.                     break;
  1615.             }
  1616.             size.x = thisWindow.document.body.scrollWidth + gBscrollWidth;
  1617.             size.y = getScrollHeight(thisWindow) + gBscrollHeight;    
  1618.             thisWindow.document.body.scroll = 'no';
  1619.         }
  1620.     }
  1621.     else {
  1622.         if (thisWindow.document.body.scrollWidth > maxgoldx) {
  1623.             size.x = maxx; 
  1624.             size.y = miny;    
  1625.             thisWindow.document.body.scroll = 'yes';
  1626.         }
  1627.         else {
  1628.             //  downsize from maxgoldx , now I try to using binary divide.
  1629.             x = maxgoldx;
  1630.             deltax = -maxgoldx/2;
  1631.             while (true) {
  1632.                 x = x + deltax;
  1633.                 thisWindow.resizeTo(x, miny);
  1634.                 thisWindow.resizeTo(x, miny);
  1635.                 diffy = getScrollHeight(thisWindow) + gBscrollHeight - x * gBRateH_W;
  1636.                 if (diffy >  gBpermitYDelta ) // it is higher than wanted, so x need to be wide a little bitter
  1637.                     deltax = Math.abs(deltax) /2;
  1638.                 else if (diffy <  -gBpermitYDelta) // it is shorter than wanted, so x need to be narrow a little bitter
  1639.                     deltax = -Math.abs(deltax) /2;
  1640.                 else 
  1641.                     // the y is close enough to wanted.
  1642.                     break;
  1643.                 if (Math.abs(deltax) < gBpermitXDelta) // the next change is too slight and it can be ignore.
  1644.                     break;
  1645.             }
  1646.             size.x = thisWindow.document.body.scrollWidth + gBscrollWidth;
  1647.             size.y = getScrollHeight(thisWindow) + gBscrollHeight ;
  1648.             thisWindow.document.body.scroll = 'no'; // At this time we do not want to show scroll any more. so it will looks better a little.
  1649.             thisWindow.resizeTo(size.x, size.y);
  1650.             if (thisWindow.document.body.scrollWidth > size.x)
  1651.             {
  1652.                 size.x = thisWindow.document.body.scrollWidth;
  1653.             }
  1654.             if (getScrollHeight(thisWindow) > size.y)
  1655.             {
  1656.                 size.y = getScrollHeight(thisWindow);
  1657.             }
  1658.         }
  1659.     }
  1660.     thisWindow.resizeTo(size.x, size.y);
  1661.     thisWindow.resizeTo(size.x, size.y);
  1662.     return;
  1663. }
  1664.  
  1665. function BSSCPopupParentClicked()
  1666. {
  1667.     if (!window.gbPopupTimeoutExpired) {
  1668.         return false;
  1669.     }
  1670.     
  1671.     document.onmousedown = gbOrignalOnMouseDown;
  1672.  
  1673.     // Simply hide the popup
  1674.     hideAll();
  1675.  
  1676.     window.gbPopupTimeoutExpired = false;
  1677.  
  1678.     return true;
  1679. }
  1680.  
  1681. function isInsideHyperLink(obj)
  1682. {
  1683.     if (obj&&obj!=getParentNode(obj))
  1684.     {
  1685.         if (obj.tagName=="A"||obj.tagName=="IMG")
  1686.             return true;
  1687.         else
  1688.             return isInsideHyperLink(getParentNode(obj));
  1689.     }
  1690.     else
  1691.         return false;
  1692. }
  1693.  
  1694. function BSSCPopupClicked(e)
  1695. {
  1696.     if (!window.gbPopupTimeoutExpired) {
  1697.         return false;
  1698.     }
  1699.  
  1700.     var popupIFrame = getCurrentPopupIFrame();
  1701.     if (popupIFrame == null) {
  1702.         return true;
  1703.     }
  1704.  
  1705.     if (gbBsIE4 && (!((popupIFrame.window.event != null) &&
  1706.         (popupIFrame.window.event.srcElement != null) &&
  1707.         isInsideHyperLink(popupIFrame.window.event.srcElement)))) {
  1708.         document.onmousedown = gbOrignalOnMouseDown;
  1709.         
  1710.         // Simply hide the popup
  1711.         hideAll();
  1712.         window.gbPopupTimeoutExpired = false;
  1713.         return true;
  1714.     }
  1715.     else if (gbBsNS6 && (!((e != null) &&
  1716.             (e.target!= null) && isInsideHyperLink(e.target))))
  1717.     {
  1718.         document.addEventListener("mousedown", gbOrignalOnMouseDown,false);
  1719.         // Simply hide the popup
  1720.         hideAll();
  1721.         window.gbPopupTimeoutExpired = false;
  1722.         return true;        
  1723.     }
  1724. }
  1725.  
  1726. //trace the mouse over's position for hotspot
  1727. function  BSPSPopupOnMouseOver(event)
  1728. {
  1729.     if (gbBsIE4 || gbBsOpera7||gbBsKonqueror3) {
  1730.         window.gnPopupClickX = event.clientX + getScrollLeft();
  1731.         window.gnPopupClickY = event.clientY + getScrollTop();
  1732.         window.gnPopupScreenClickX = event.screenX;
  1733.         window.gnPopupScreenClickY = event.screenY;
  1734.     } else if (gbBsSafari) {
  1735.         window.gnPopupClickX = event.clientX + getScrollLeft();
  1736.         window.gnPopupClickY = event.clientY + getScrollTop();
  1737.         window.gnPopupScreenClickX = event.screenX + window.screenX;
  1738.         window.gnPopupScreenClickY = event.screenY + window.screenY;
  1739.     } else if (gbBsNS4) {
  1740.         window.gnPopupClickX = event.pageX - window.pageXOffset;
  1741.         window.gnPopupClickY = event.pageY - window.pageYOffset;
  1742.         window.gnPopupScreenClickX = event.screenX - window.pageXOffset;
  1743.         window.gnPopupScreenClickY = event.screenY - window.pageYOffset;
  1744.     }
  1745. }
  1746.  
  1747. function BSSCHidePopupWindow()
  1748. {
  1749.     if (window.gPopupWindow != null) {
  1750.         if (gbBsNS4) {
  1751.             if ((typeof window.gPopupWindow != "undefined") && (!window.gPopupWindow.closed)) {
  1752.                 window.gPopupWindow.close();
  1753.                 window.gPopupWindow = null;
  1754.             }
  1755.         }
  1756.     }
  1757.     return;
  1758. }
  1759.  
  1760. // Add the PopupOnClick to the onclick array.
  1761. if (typeof(BsscRegisterOnClick) != "undefined")
  1762. {
  1763.     BsscRegisterOnClick(BsPopupOnClick);
  1764. }
  1765. //End to support previous popup functions
  1766.  
  1767. /// Section End  - Popup (JavaScript 1.0)
  1768.  
  1769. /// Section Begin - Embedded Stub (JavaScript 1.0)
  1770.  
  1771. function BSSCCreatePopupDiv()
  1772. {
  1773.     return;
  1774. }
  1775.  
  1776. function WritePopupMenuLayer()
  1777. {
  1778.     if (BsscHasExtJs()) {_WritePopupMenuLayer();}
  1779. }
  1780.  
  1781. function BSSCPopup(strURL, width, height)
  1782. {
  1783.     var re = new RegExp("'", 'g');
  1784.     strURL = strURL.replace(re, "%27");
  1785.  
  1786.     if (BsscHasExtJs())    { 
  1787.         _BSSCPopup(strURL, width, height);
  1788.     }else{
  1789.         //Create a temporary window first to ensure the real popup comes up on top
  1790.         var wndTemp = null;
  1791.         if (!gbBsNS3) {
  1792.             wndTemp = window.open("", "temp", "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,height=3,width=4");
  1793.         }
  1794.         // Create the real popup window
  1795.         var wndPopup = window.open(strURL, "BSSCPopup", "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,height=300,width=400");
  1796.         // Close the temporary
  1797.         if (!gbBsNS3) {
  1798.             wndTemp.close();
  1799.         } else {
  1800.             wndPopup.focus();
  1801.         }
  1802.     }
  1803. }
  1804.  
  1805. var gbWndTemp = null, gbWndPopupLinks = null;
  1806. var gbstrParaTotal = "";
  1807.  
  1808. function PopupMenu_Invoke()
  1809. {
  1810.     if (typeof(wfRelatedTopic) == 'function' && typeof(IsFlashSupported) == 'function')
  1811.     {
  1812.         if (Number(gsSkinVersion) > 2 && IsFlashSupported())
  1813.         {
  1814.             return wfRelatedTopic(PopupMenu_Invoke.arguments);
  1815.         }
  1816.     }
  1817.     if (BsscHasExtJs()) {
  1818.         return _PopupMenu_Invoke(PopupMenu_Invoke.arguments);
  1819.     }
  1820.     if (gbBsNS3Before || gbBsIE3Before )    {
  1821.         var argLen     = PopupMenu_Invoke.arguments.length;
  1822.         if (argLen < 5) {
  1823.             window.document.location.href = PopupMenu_Invoke.arguments[3];
  1824.             return false;
  1825.         }
  1826.         gbWndTemp = null;
  1827.         gbWndPopupLinks = null;
  1828.         gbstrParaTotal = "";
  1829.         for (var i = 0; i < (argLen - 2) / 2; i++) {
  1830.             var strParaLine = "";
  1831.             if (gbBsNS2){
  1832.                 strParaLine += "<a href=\"";
  1833.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 3];
  1834.                 strParaLine += "\">"
  1835.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 2];
  1836.                 strParaLine += "</a>";
  1837.             } else {
  1838.                 strParaLine += "<a href=\"javascript:";
  1839.                 strParaLine += "gotoUrl(\'";
  1840.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 3];
  1841.                 strParaLine += "\');\"";
  1842.                 if (PopupMenu_Invoke.arguments[1] != '') {
  1843.                     strParaLine += " TARGET='" + PopupMenu_Invoke.arguments[1] + "'";
  1844.                 }
  1845.                 strParaLine += ">";
  1846.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 2];
  1847.                 strParaLine += "</a>";
  1848.             }
  1849.             strParaLine += "<br>";
  1850.             gbstrParaTotal += strParaLine;
  1851.         }
  1852.         var nHeight = argLen * 15;
  1853.         var nWidth = 400;
  1854.         var strParam = "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=auto";
  1855.         strParam += ",height=" + nHeight + ",width=200,resizable";
  1856.         
  1857.         //Create a temporary window first to ensure the real popup comes up on top
  1858.         //var wndTemp = null;
  1859.         if (!gbBsNS3) {
  1860.             gbWndTemp = window.open("", "temp", "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,height=3,width=4");
  1861.         } 
  1862.         gbWndPopupLinks = window.open("", "popuplinks", strParam);
  1863.  
  1864.         setTimeout("Wait_PopupMenuReady()", 100);
  1865.     }
  1866.     return true;
  1867. }
  1868.  
  1869. function Wait_PopupMenuReady() 
  1870. {
  1871.     if (gbWndPopupLinks != null && "object" == typeof(gbWndPopupLinks.document)) {
  1872.         PopupMenu_InvokeReady();
  1873.     }
  1874.     else 
  1875.         setTimeout("Wait_PopupMenuReady()", 100);
  1876. }
  1877.  
  1878. function PopupMenu_InvokeReady()
  1879. {
  1880.     if (gbWndPopupLinks != null) {
  1881.         gbWndPopupLinks.document.open("text/html");
  1882.         gbWndPopupLinks.document.write("<html><head>");
  1883.         if (gbBsNS2) {
  1884.             gbWndPopupLinks.document.write("<base href=\"" + location +"\">");
  1885.         } else {
  1886.             //YJ: IE301,302 and NS3.x works fine
  1887.             gbWndPopupLinks.document.write("<");
  1888.             gbWndPopupLinks.document.write("script>");
  1889.             gbWndPopupLinks.document.write("function gotoUrl(aUrl) {opener.window.location=aUrl; close();}");
  1890.             gbWndPopupLinks.document.write("<");
  1891.             gbWndPopupLinks.document.write("/script>");
  1892.         }
  1893.         gbWndPopupLinks.document.write("</head><body onBlur=\'self.focus();\'>");
  1894.         gbWndPopupLinks.document.write(gbstrParaTotal);
  1895.         gbWndPopupLinks.document.write("</body></html>");
  1896.         gbWndPopupLinks.document.close();
  1897.  
  1898.         // Close the temporary
  1899.         if (!gbBsNS3 && gbWndTemp != null) {
  1900.             gbWndTemp.close();
  1901.         }else {
  1902.             gbWndPopupLinks.focus();
  1903.         }
  1904.  
  1905.         return true;
  1906.     }
  1907.     return false;
  1908. }
  1909.  
  1910. /// Section End - Embedded Stub (JavaScript 1.0)
  1911.  
  1912. //// Segment End -- (JavaScript 1.0)
  1913.  
  1914. //// Segment Begin -- (JavaScript 1.2)
  1915. /// Section Begin  - DHTM (JavaScript 1.2)
  1916.  
  1917. //Begin to support extended and dropdown text effects.
  1918. function IsParagraph(el)
  1919. {
  1920.     return( el.tagName == "P" || el.tagName.indexOf("H") == 0 ) ? true : false;
  1921. }
  1922.  
  1923. //Begin to support extended and dropdown text effects.
  1924. function kadovIsParagraph(el)
  1925. {
  1926.     return IsParagraph(el);
  1927. }
  1928.  
  1929.  
  1930. function InitEachChild(el)
  1931. {    
  1932.     for(var i=0; i<getChildNodes(el).length; i++)
  1933.     {
  1934.         var child = getChildNodes(el)[i];
  1935.         if( child.tagName == "SCRIPT" || child.tagName == "!" )
  1936.             continue;
  1937.  
  1938.         if( child.id != "" )
  1939.         {
  1940.             // to wipe out the onload effects
  1941.             if (gbBsIE4&&!gbBsMac)
  1942.             {
  1943.                 var onLoadEffect = child.style.getAttribute( "x-on-pageload" );
  1944.                 if( (onLoadEffect != null) && (onLoadEffect > "") )
  1945.                     child.style.setAttribute( "x-on-pageload", "" );
  1946.             }
  1947.             
  1948.             var href = child.getAttribute("href")
  1949.             if( href != null && href > "" && href.indexOf( "BSSCPopup" ) >= 0 )
  1950.                 FilePopupInit(child.id); // Init for Popup
  1951.             else if( child.className == "dropspot" || child.className == "expandspot" || 
  1952.                      child.className == "glossterm" )
  1953.                 TextPopupInit(child.id);// Init for Expanding/Glossary or DropDown text
  1954.             else if( child.className == "trigger")
  1955.                 InitTrigger(child.id);// Init for Trigger
  1956.             else
  1957.             {
  1958.                 InitEffects(child.id);// Init for DHTML effects
  1959.                 CEngine.SetOneTargetInitialState( child.id );
  1960.             }
  1961.         }
  1962.         
  1963.         if( (child.tagName == "IMG") && (child.getAttribute("dynsrc") > "") )
  1964.             child.start = "mouseover";// to start a AVI file. fileopen doesn't work
  1965.  
  1966.         InitEachChild(child);
  1967.     }
  1968. }
  1969.  
  1970. function kadovInitEachChild(el)
  1971. {    
  1972.     InitEachChild(el);
  1973. }
  1974.  
  1975. function RetrieveTextInner(el)
  1976. {    
  1977.     var x = "";
  1978.     if( (!el) || (el.tagName == "!") || (el.tagName == "SCRIPT" ))
  1979.         return x;
  1980.  
  1981.     if( IsParagraph(el) )
  1982.     {
  1983.         var strNewID = " ";
  1984.         if( el.id != "" )
  1985.             strNewID += "id=" + el.id + "_NewSpan ";
  1986.         x = "<span" + strNewID + "style='" + el.style.cssText + "'>" + el.innerHTML + "</span>";
  1987.     }
  1988.     else
  1989.     {
  1990.         for(var i=0; i<getChildNodes(el).length; i++)
  1991.             x += RetrieveTextInner( getChildNodes(el)[i] );
  1992.     }
  1993.     return x;
  1994. }
  1995.  
  1996. function kadovRetrieveTextInner(el)
  1997. {
  1998.     return     RetrieveTextInner(el);
  1999. }
  2000.  
  2001. function RetrieveCleanHTML( strRawHTML, strTagOpen, strTagClose, nDistance )
  2002. {    
  2003.     var nTagOpen = strRawHTML.indexOf( strTagOpen, 0 );
  2004.     if( nTagOpen < 0 )
  2005.         return strRawHTML;
  2006.  
  2007.     var nTagClose = strRawHTML.indexOf( strTagClose, nTagOpen);
  2008.     if( nTagClose < nTagOpen )
  2009.         return strRawHTML;
  2010.         
  2011.     if( typeof(nDistance) == "number" && nDistance > 0 )
  2012.         if( (nTagClose - nTagOpen) != nDistance )
  2013.             return strRawHTML;
  2014.         
  2015.     var strCleanOnce = strRawHTML.substring(0, nTagOpen) + strRawHTML.substr(nTagClose + strTagClose.length) ;
  2016.     return     RetrieveCleanHTML( strCleanOnce, strTagOpen, strTagClose );
  2017. }
  2018.  
  2019. function kadovRetrieveCleanHTML( strRawHTML, strTagOpen, strTagClose, nDistance )
  2020. {    
  2021.     return RetrieveCleanHTML( strRawHTML, strTagOpen, strTagClose, nDistance );
  2022. }    
  2023.  
  2024. function AdjustObjectTag(strRawHTML, nStartPos)
  2025. {// adjust object tag for related topics HTML control, because innerHTML misses out the item settings
  2026.     
  2027.     //Is there any DTC?
  2028.     var strDTCTagOpen = '<!--Metadata type="DesignerControl" startspan';
  2029.     var strDTCTagClose = '<!--Metadata type="DesignerControl" endspan-->';
  2030.     var nDTCTagOpen = strRawHTML.indexOf( strDTCTagOpen, nStartPos );
  2031.     if( nDTCTagOpen < 0 )
  2032.         return strRawHTML;
  2033.     var nDTCTagClose = strRawHTML.indexOf( strDTCTagClose, nDTCTagOpen );
  2034.     if( nDTCTagClose < nDTCTagOpen)
  2035.         return strRawHTML; // no Design Time Controls;
  2036.         
  2037.     //Is the DTC HTML Help Control?
  2038.     var strRTObjTagOpen = 'classid=clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11';
  2039.     var strRTObjTagClose = '</OBJECT>';
  2040.     var nRTObjTagOpen = strRawHTML.indexOf( strRTObjTagOpen, nDTCTagOpen );
  2041.     if( nRTObjTagOpen < nDTCTagOpen )
  2042.         return strRawHTML;
  2043.     var nRTObjTagClose = strRawHTML.indexOf( strRTObjTagClose, nRTObjTagOpen );
  2044.     if( nRTObjTagClose < nRTObjTagOpen )
  2045.         return strRawHTML; // is not a HTML help control
  2046.         
  2047.     // Is it a related Topics html help control?
  2048.     var strRTObjLabel = '<PARAM NAME=\"Command\" VALUE=\"Related Topics';
  2049.     if( strRawHTML.indexOf(strRTObjLabel, nRTObjTagOpen) < 0 )
  2050.         return strRawHTML;
  2051.     
  2052.     // does the commented object tag contain a items parameters        
  2053.     var strRTItemsOpen = '<param name="Items" value="';
  2054.     var strRTItemsClose = '$$**$$" >';
  2055.     var strRTItemsClose2 = '$$**$$">';
  2056.  
  2057.     var nRTItemsOpen = strRawHTML.indexOf(strRTItemsOpen, nDTCTagOpen);
  2058.     if( nRTItemsOpen < nDTCTagOpen )
  2059.         return strRawHTML;
  2060.     var nRTItemsClose = strRawHTML.indexOf(strRTItemsClose, nRTItemsOpen);
  2061.     if (nRTItemsClose == -1)
  2062.         nRTItemsClose = strRawHTML.indexOf(strRTItemsClose2, nRTItemsOpen);
  2063.     if( nRTItemsClose < nRTItemsOpen )
  2064.         return strRawHTML;
  2065.         
  2066.     // found a items string
  2067.     var strItems = strRawHTML.substring( nRTItemsOpen + strRTItemsOpen.length, nRTItemsClose);
  2068.     if( strItems.length < 1 )
  2069.         return strRawHTML;
  2070.     
  2071.     // to reconstruct the item(s) param tag(s)
  2072.     var strItemsArray = strItems.split('$$**$$');
  2073.     if( strItemsArray.length < 1 )
  2074.         return strRawHTML;
  2075.     var strRunTimeItemParam = "";
  2076.     for( var i = 0; i < strItemsArray.length; i++ )
  2077.     {
  2078.         strRunTimeItemParam += '<PARAM  NAME="Item' + (i+1);
  2079.         strRunTimeItemParam += '"' + '  VALUE="';
  2080.         strRunTimeItemParam += strItemsArray[i];
  2081.         strRunTimeItemParam += '">';
  2082.     }
  2083.     
  2084.     // to insert the reconstructed item params into runtime object tag
  2085.     var strAdjustedHTML = strRawHTML.substring(0,nRTObjTagClose) + strRunTimeItemParam + strRawHTML.substring(nRTObjTagClose, strRawHTML.length);
  2086.     return AdjustObjectTag(strAdjustedHTML, nDTCTagClose + strDTCTagClose.length);
  2087. }
  2088.  
  2089. function kadovAdjustObjectTag(strRawHTML, nStartPos)
  2090. {// adjust object tag for related topics HTML control, because innerHTML misses out the item settings
  2091.  return AdjustObjectTag(strRawHTML, nStartPos);
  2092. }
  2093.  
  2094. function TextPopupOnLoad( el )
  2095. {
  2096.     if( typeof(el) == "string" )
  2097.         el = getElement(el);
  2098.  
  2099.     var src = el.getAttribute( "x-use-popup" );
  2100.     var bNeedMove=true;
  2101.     if(!src&&el.id)
  2102.     {
  2103.         for (var i=0;i<gPopupData.length;i++)
  2104.             if (gPopupData[i].el==el.id)
  2105.             {
  2106.                 src=gPopupData[i].popupId;
  2107.                 bNeedMove=false;
  2108.                 break;
  2109.             }
  2110.     }
  2111.     if(!src)
  2112.         src = el.style.getAttribute( "x-use-popup" );    
  2113.     if (!src)    
  2114.         return 0;
  2115.  
  2116.     var name = src;
  2117.     if( src.substr(0,1) == "#" ) 
  2118.         name = src.substr(1, src.length-1);
  2119.     var srcDiv = getElement(name);
  2120.     if( !srcDiv )
  2121.         return 1;
  2122.  
  2123.     if (bNeedMove)
  2124.     {
  2125.         var type = el.getAttribute( "x-popup-type" );
  2126.         if (!type)
  2127.             type = el.style.getAttribute("x-popup-type");
  2128.         if (!type)        
  2129.             return 1;        
  2130.         var setup = el.getAttribute( "x-tmp-setup" );
  2131.         var newId = name;
  2132.         if( newId.indexOf( "_tmp") <= 0 )
  2133.             newId += "_tmp";
  2134.  
  2135.         if( !setup)
  2136.         {
  2137.             el.setAttribute( "x-tmp-setup", 1 );
  2138.  
  2139.             if( type == "pulldown"  )
  2140.             {
  2141.                 var strAdjust = AdjustObjectTag(srcDiv.innerHTML,0);
  2142.                 var strCleanHTML = RetrieveCleanHTML(strAdjust, "<!--", "-->");
  2143.                 strCleanHTML = RetrieveCleanHTML(strCleanHTML, "<SCRIPT", "/SCRIPT>");
  2144.                 
  2145.                 //work around the bug in HH.exe that highlight the phrases when use Search tab
  2146.                 //this approach is just removing the <FONT...> tag inserted by Microsoft in the runtime
  2147.                 strCleanHTML = RetrieveCleanHTML(strCleanHTML, "<FONT color=#", "\">", 52);
  2148.                 
  2149.                 var strStyle = " style='display:none; position:relative;";
  2150.                 var newDiv = "<div class=droptext id=" + newId + strStyle + "'>" + strCleanHTML + "</div>";
  2151.  
  2152.                 removeThis(srcDiv); // empty the original DIV tag
  2153.                 var elParentPra = FindParentParagraph(el);
  2154.                 if( elParentPra )
  2155.                     insertAdjacentHTML(elParentPra, "afterEnd", newDiv );
  2156.             }
  2157.             else if( type == "expanding"  )
  2158.             {
  2159.                 var inner = RetrieveTextInner(srcDiv);
  2160.                 if( inner == "" )
  2161.                     inner = srcDiv.innerHTML;
  2162.                 var strAdjust = AdjustObjectTag(inner,0);
  2163.                 var strCleanHTML = RetrieveCleanHTML(strAdjust, "<!--", "-->");
  2164.                 strCleanHTML = RetrieveCleanHTML(strCleanHTML, "<SCRIPT", "/SCRIPT>");
  2165.                 var strClassName = (el.className == "glossterm") ? "glosstext" : "expandtext";
  2166.                 var newSpan = "<span class=" + strClassName + " style='display: none;' id=" + newId + "> " + strCleanHTML + "</span>";
  2167.                 removeThis(srcDiv); // empty the original DIV tag
  2168.                 insertAdjacentHTML(el, "afterEnd", newSpan );
  2169.             }
  2170.         }
  2171.     }
  2172.     else
  2173.     {
  2174.         srcDiv.style.display = "none";
  2175.     }
  2176.     return 0;
  2177. }
  2178. function kadovTextPopupOnLoad( el )
  2179. {
  2180.     return TextPopupOnLoad( el );
  2181. }
  2182. function getElementsByTag(obj,sTagName)
  2183. {
  2184.     if(obj.getElementsByTagName)
  2185.         return obj.getElementsByTagName(sTagName);
  2186.     else if(obj.all)
  2187.         return obj.all.tags(sTagName);
  2188.     return null;
  2189. }
  2190.  
  2191. function getElement(sID)
  2192. {
  2193.     if(document.getElementById)
  2194.         return document.getElementById(sID);
  2195.     else if(document.all)
  2196.         return document.all(sID);
  2197.     return null;
  2198. }
  2199.  
  2200. function getParentNode(obj)
  2201. {
  2202.     if(obj.parentNode)
  2203.         return obj.parentNode;
  2204.     else if(obj.parentElement)
  2205.         return obj.parentElement;
  2206.     return null;
  2207. }
  2208.  
  2209. function getChildNodes(obj)
  2210. {
  2211.     if(obj.childNodes)
  2212.     {
  2213.         var children = new Array();
  2214.         for (var i = 0; i < obj.childNodes.length; i++)
  2215.         {
  2216.             if (obj.childNodes[i].nodeType == 1)
  2217.                 children[children.length] = obj.childNodes[i];
  2218.         }
  2219.         return children;
  2220.     }
  2221.     else if(obj.children)
  2222.         return obj.children;
  2223.     return null;    
  2224. }
  2225.  
  2226. function removeThis(obj)
  2227. {
  2228.     if(obj.parentNode)
  2229.         obj.parentNode.removeChild(obj);
  2230.     else
  2231.         obj.outerHTML="";
  2232. }
  2233.  
  2234. function TextPopup( el )
  2235. {
  2236.     if (!gbBsIE4 && !gbBsOpera7 && !gbBsSafari && !gbBsNS6 && !gbBsKonqueror3 )
  2237.         return;
  2238.  
  2239.     var bNeedMove=true;
  2240.     
  2241.     if (window.event)
  2242.         window.event.cancelBubble = true;
  2243.  
  2244.     if( typeof(el) == "string" )
  2245.         el = getElement(el);
  2246.  
  2247.     if (!el||el==window)
  2248.         return;
  2249.     
  2250.     var src = el.getAttribute( "x-use-popup" );
  2251.     if(!src&&el.id)
  2252.     {
  2253.         for (var i=0;i<gPopupData.length;i++)
  2254.             if (gPopupData[i].el==el.id)
  2255.             {
  2256.                 src=gPopupData[i].popupId;
  2257.                 bNeedMove=false;
  2258.                 break;
  2259.             }
  2260.     }
  2261.     if(!src)
  2262.         src = el.style.getAttribute( "x-use-popup" );    
  2263.     if(!src)
  2264.         return;
  2265.         
  2266.     var name = src;
  2267.     if( src.substr(0,1) == "#" ) 
  2268.     if (bNeedMove)
  2269.         name = src.substr(1, src.length-1) + "_tmp";
  2270.     else
  2271.         name = src.substr(1, src.length-1);
  2272.  
  2273.     var srcDiv = getElement(name);
  2274.     if( !srcDiv )
  2275.         return;
  2276.  
  2277.     if( srcDiv )
  2278.     {
  2279.         if( srcDiv.style.display == "" )
  2280.             srcDiv.style.display = "none";
  2281.         else
  2282.         {
  2283.             srcDiv.style.display = "";
  2284.             if( typeof(srcDiv.bInitialized) == "undefined" )
  2285.             {
  2286.                 srcDiv.bInitialized = true;
  2287.                 InitEffects(name);
  2288.                 InitEachChild(srcDiv);
  2289.             }
  2290.         }
  2291.     }
  2292.     if(gbBsIE4)
  2293.         event.returnValue=false;
  2294.     return;
  2295. }
  2296.  
  2297. function kadovTextPopup( el )
  2298. {
  2299.     TextPopup( el );
  2300. }
  2301.  
  2302. function FindParentParagraph( el )
  2303. {
  2304.     if( typeof(el) == "string" )
  2305.         el = getElement(el);
  2306.     if( (!el) || el.tagName == "BODY" )
  2307.         return null;
  2308.     if( IsParagraph(getParentNode(el)) )
  2309.         return getParentNode(el);
  2310.     else
  2311.         return FindParentParagraph( getParentNode(el) );
  2312. }
  2313.  
  2314. function kadovFindParentParagraph( el )
  2315. {
  2316.     return FindParentParagraph( el );
  2317. }
  2318.  
  2319. //Begin HTML code invoked function
  2320. function RegisterEventHandler( obj, strEvent, strEventHandler )
  2321. {
  2322.     if( !gbBsIE4 )
  2323.         return;
  2324.     CCSSP.RegisterEventHandler( obj, strEvent, strEventHandler );
  2325. }
  2326.  
  2327. function kadovRegisterEventHandler( obj, strEvent, strEventHandler )
  2328. {
  2329.  RegisterEventHandler( obj, strEvent, strEventHandler );
  2330. }
  2331.  
  2332.  
  2333. function textPopupData(el, popupId)
  2334. {
  2335.     this.el = el;
  2336.     this.popupId = "#"+popupId;
  2337. }
  2338.  
  2339. var gPopupData = new Array();
  2340.  
  2341. function TextPopupInit( el, popupId)
  2342. {
  2343.     if (!gbBsIE4 && !gbBsOpera7 && !gbBsSafari && !gbBsNS6 && !gbBsKonqueror3)
  2344.         return;
  2345.         
  2346.     if( typeof(el) == "string" )
  2347.     {
  2348.         if (popupId)
  2349.         {
  2350.             gPopupData[gPopupData.length]=new textPopupData(el, popupId);
  2351.         }
  2352.         el = getElement(el);
  2353.     }
  2354.         
  2355.     if( el != null )
  2356.     {
  2357.         CCSSP.RegisterEventHandler( el, "onclick", "TextPopup(\"" + el.id +"\");" );
  2358.         CCSSP.RegisterEventHandler( window, "onload", "TextPopupOnLoad(\"" + el.id +"\");" );
  2359.     }
  2360. }
  2361.  
  2362. function kadovTextPopupInit( el, popupId)
  2363. {
  2364.     return TextPopupInit( el, popupId);
  2365. }
  2366. //End HTML code invoked function
  2367.  
  2368. //End to support extended and dropdown text effects.
  2369.  
  2370. //Begin to convert iWrite format to RoboEditor Format for DHTML effects
  2371. function InitTriggersInHead( )
  2372. {
  2373.   if( Object.xDelayedInitElements )
  2374.   {
  2375.      var x = Object.xDelayedInitElements;
  2376.      for(i=0; i<x.length; i++)
  2377.          InitTrigger( x[i] );
  2378.   }
  2379. }
  2380.  
  2381. function kadovInitTriggersInHead( )
  2382. {
  2383.     InitTriggersInHead( );
  2384. }
  2385.  
  2386. //Begin HTML code invoked function
  2387. function FilePopupInit( el )
  2388. {
  2389.     if( typeof(el) == "string" )
  2390.         el = getElement(el);
  2391.  
  2392.     if( el != null )
  2393.         CCSSP.RegisterEventHandler( el, "onmouseover", "BSPSPopupOnMouseOver(event);" );
  2394. }
  2395. function kadovFilePopupInit( el )
  2396. {
  2397.     FilePopupInit( el );
  2398. }
  2399.  
  2400. function InitTrigger( element )
  2401. {
  2402.     if( !gbBsIE4 )
  2403.         return;
  2404.     var srcElement = element;
  2405.     if( typeof(srcElement) == "string" )
  2406.     {
  2407.         srcElement = getElement(element,0);
  2408.         if(srcElement == null)
  2409.             return;
  2410.     }
  2411.     
  2412.     if( !IsParentVisible(srcElement) )
  2413.         return;
  2414.  
  2415.     var targets = srcElement.getAttribute( "x-targets" );
  2416.     if (!targets)
  2417.         targets = srcElement.style.getAttribute("x-targets");
  2418.     if (!targets)
  2419.         return;    
  2420.     var arrOneTarget = targets.split( "," );
  2421.     for( var i = 0; i < arrOneTarget.length; i ++ )
  2422.         bsscFXInit( element, arrOneTarget[i], null, null, null, null );
  2423. }
  2424.  
  2425. function kadovInitTrigger( element )
  2426. {
  2427.     InitTrigger( element )
  2428. }
  2429.  
  2430. function IsParentVisible( el )
  2431. {
  2432.     if( typeof(el) == "string" )
  2433.         el = getElement(el);
  2434.     if( (!el) || el.tagName == "BODY" )
  2435.         return true;
  2436.     if( el.style.display == 'none' ) //el.visibility == 'hidden' || 
  2437.         return false;
  2438.     else
  2439.         return IsParentVisible( getParentNode(el) );
  2440. }
  2441.  
  2442. function kadovIsParentVisible( el )
  2443. {
  2444.     return IsParentVisible( el );
  2445. }
  2446. function InitEffects( element )
  2447. {
  2448.     if( !gbBsIE4 )
  2449.         return;
  2450.     var srcElement = element;
  2451.     if( typeof(srcElement) == "string" )
  2452.     {
  2453.         srcElement = getElement(element,0);
  2454.         if(srcElement == null)
  2455.             return;
  2456.     }
  2457.     
  2458.     if( !IsParentVisible(srcElement) )
  2459.         return;
  2460.     
  2461.     InitEffect( srcElement, "x-on-hover" );
  2462.     InitEffect( srcElement, "x-on-pageclick" );
  2463.     InitEffect( srcElement, "x-on-pageload" );
  2464.     InitEffect( srcElement, "x-on-trigger-1" );
  2465.     InitEffect( srcElement, "x-on-trigger-2" );
  2466. }
  2467.  
  2468. function kadovInitEffects( element )
  2469. {
  2470.     InitEffects( element );
  2471. }
  2472. //End HTML code invoked function
  2473.  
  2474. function InitEffect( element, prop )
  2475. {
  2476.     var values = null;
  2477.     if( element.getAttribute( "currentStyle" )  && element.currentStyle.getAttribute)
  2478.         values = element.currentStyle.getAttribute( prop );
  2479.     else  if (element.style.getAttribute)
  2480.         values = element.style.getAttribute( prop );
  2481.     if( !values )
  2482.         return;
  2483.  
  2484.     var functions = new Array();
  2485.     var nIdx = 0, nStart = 0;
  2486.     var nNext = values.indexOf( "\)", 0);
  2487.     while( nNext >= 0 && nNext < values.length )
  2488.     {
  2489.         functions[nIdx] = values.substr( nStart, nNext-nStart+1);
  2490.         nStart = nNext + 1;
  2491.         nIdx++;
  2492.         nNext = values.indexOf( "\)", nStart);
  2493.     }
  2494.         
  2495.     for( var i=0; i<functions.length; i++)
  2496.     {
  2497.         var id = element.getAttribute( "id" );
  2498.         var translatedProp = TranslateProp(prop);
  2499.  
  2500.         var lp = functions[i].indexOf( "(" );
  2501.         var fnname = functions[i].substring(0, lp);
  2502.         var srcargs = functions[i].substring(lp+1, functions[i].length-1);
  2503.         
  2504.         var nClickTimes = 1;
  2505.         var arrForClickCount = srcargs.split( "," );
  2506.         for( var j = 0; j < arrForClickCount.length; j++ )
  2507.         {// to locate and get the "clicks=99" settings
  2508.             var nPageClick = arrForClickCount[j].indexOf("clicks");
  2509.             if( nPageClick >= 0 )
  2510.             {
  2511.                 nPageClick = arrForClickCount[j].indexOf("=");
  2512.                 if( nPageClick > 0 )
  2513.                 {
  2514.                     nClickTimes = arrForClickCount[j].substring( nPageClick + 1, arrForClickCount[j].length) * 1;
  2515.                     break;
  2516.                 }
  2517.             }
  2518.         }
  2519.         var args = srcargs;
  2520.         if( j < arrForClickCount.length )
  2521.         {// to strip out the "clicks=99" from the arguments string
  2522.             args = "";
  2523.             for( var k = 0; k < arrForClickCount.length; k ++ )
  2524.             {
  2525.                 if( k != j )
  2526.                 {
  2527.                     args += arrForClickCount[k];
  2528.                     if( k < arrForClickCount.length - 1 )
  2529.                         args += ",";
  2530.                 }
  2531.             }
  2532.         }
  2533.         bsscFXInit( null, id, translatedProp, fnname, args, nClickTimes );
  2534.     }
  2535. }
  2536.  
  2537. function kadovInitEffect( element, prop )
  2538. {
  2539.     InitEffect( element, prop );
  2540. }
  2541.  
  2542. function TranslateProp( prop )
  2543. {
  2544.     switch( prop )
  2545.     {
  2546.     case "x-on-hover" :     return "bsschover";
  2547.     case "x-on-pageclick" : return "bsscpageclick";
  2548.     case "x-on-pageload" :  return "bsscpageload";
  2549.     case "x-on-trigger-1" : return "bssctrigger1";
  2550.     case "x-on-trigger-2" : return "bssctrigger2";
  2551.     }
  2552.     return null;
  2553. }
  2554.  
  2555. function kadovTranslateProp( prop )
  2556. {
  2557.     return TranslateProp( prop );
  2558. }
  2559.  
  2560. //End to convert iWrite format to RoboEditor Format for DHTML effects
  2561.  
  2562. //Begin the definition of one entry to DHTML effects
  2563. function bsscFXInit( trigger_ID, target_ID, event_type, 
  2564.     action_type, action_setting, event_addional )
  2565. {
  2566.     if( (!gbBsWindows && !gbBsSunOS  && !(gbBsMac&&gbBsIE5)) || typeof(target_ID) != "string" )//MUST have a target_ID
  2567.         return; // we don't support Navigator yet
  2568.     
  2569.     if( typeof(event_type) == "string" )
  2570.         event_type = event_type.toLowerCase();
  2571.     if( typeof(action_type) == "string" )
  2572.         action_type = action_type.toLowerCase();
  2573.     if( typeof(action_setting) == "string" )
  2574.          action_setting = action_setting.toLowerCase();
  2575.     
  2576.     // to get the target element then add it to the target list
  2577.     var eleTarget = CCSSP.GetObject( target_ID );
  2578.     if( (eleTarget != null) && (event_type != null) && (action_type != null) )
  2579.     {
  2580.         CEngine.AddOneTarget( target_ID, eleTarget );
  2581.         CEngine.BuildTargetObject(target_ID, event_type, action_type, action_setting, event_addional);
  2582.     }
  2583.     
  2584.     // to validate the trigger_ID parameter
  2585.     if( typeof(trigger_ID) == "string" && trigger_ID != "" )
  2586.         CEngine.BuildTriggerObject( trigger_ID, target_ID );
  2587. }    
  2588. //End the definition of one entry to DHTML effects
  2589.  
  2590. /// Section End  - DHTM (JavaScript 1.2)
  2591.  
  2592. /// Section Begin  - CCSSP DHTM (JavaScript 1.2)
  2593.  
  2594. //Begin JavaScript libary for cross-platform positioning object.
  2595. function CCSSP(){} // constructor of CCSSP class
  2596.  
  2597. CCSSP.GetObject = function( obj )
  2598. {//convert object name string or reference into a valid object reference
  2599.     if( typeof(obj) == "object" )
  2600.         return obj;
  2601.     else if( typeof(obj) == "string" && obj != "")
  2602.     {
  2603.         if( gbBsNS4 )
  2604.             return eval("document." + obj);
  2605.         else
  2606.             return eval("document.all(\"" + obj + "\")");
  2607.     }
  2608.     else
  2609.         return null;
  2610. }
  2611.  
  2612. CCSSP.MoveObjectTo = function(obj, x, y)
  2613. {//positioning an object at a specific pixel coordinate
  2614.     if( gbBsNS4 )
  2615.         obj.moveTo(x,y);
  2616.     else
  2617.     {
  2618.         obj.style.pixelLeft = x;
  2619.         obj.style.pixelTop = y;
  2620.     }
  2621. }
  2622.  
  2623. CCSSP.MoveObjectBy = function(obj, dx, dy)
  2624. {//moveing a object by x and/or y pixel
  2625.     if( gbBsNS4 )
  2626.         obj.moveBy(dx,dy);
  2627.     else
  2628.     {
  2629.         obj.style.pixelLeft += dx;
  2630.         obj.style.pixelTop += dy;
  2631.     }
  2632. }
  2633.  
  2634. CCSSP.SetObjectBGColor = function(obj, color)
  2635. {//set the background color of an object
  2636.     if( gbBsNS4 )
  2637.         obj.bgColor = color;
  2638.     else
  2639.         obj.style.backgroundColor = color;
  2640. }
  2641.  
  2642. CCSSP.ShowObject = function(obj, bShow)
  2643. {// set the object to be visible or invisible
  2644.     if( gbBsNS4 )
  2645.         obj.visibility = (bShow == true) ? 'show' : 'hide';
  2646.     else
  2647.         obj.style.visibility = (bShow == true) ? 'visible' : 'hidden';// when hidden, it still occupy some space.
  2648. }
  2649.  
  2650. CCSSP.GetObjectLeft = function(obj)
  2651. {// retrieve the x coordinate of a posionable object
  2652.     if( gbBsNS4 )
  2653.         return obj.left;
  2654.     else
  2655.         return obj.style.pixelLeft;
  2656. }
  2657.  
  2658. CCSSP.GetObjectTop = function(obj)
  2659. {// retrieve the y coordinate of a posionable object
  2660.     if( gbBsNS4 )
  2661.         return obj.top;
  2662.     else
  2663.         return obj.style.pixelTop;
  2664. }
  2665.  
  2666. CCSSP.GetObjectContainLeft = function(obj)
  2667. {// retrieve the x coordinate of a posionable object relative to it's parent element
  2668.     if( gbBsNS4 )
  2669.         return obj.pageX;
  2670.     else
  2671.     {
  2672.         if( obj == document.body )
  2673.             return obj.clientLeft;
  2674.         else
  2675.             return obj.offsetLeft;
  2676.     }
  2677. }
  2678.  
  2679. CCSSP.GetObjectWindowLeft = function(obj)
  2680. {// retrieve the x coordinate of a posionable object relative to browser window
  2681.     if( gbBsNS4 )
  2682.         return obj.pageX;
  2683.     else
  2684.     {
  2685.         var nOffsetWindowLeft = 0;
  2686.         for(var element = obj; element; element = element.offsetParent)
  2687.             nOffsetWindowLeft += CCSSP.GetObjectContainLeft(element);
  2688.         return nOffsetWindowLeft;
  2689.     }
  2690. }
  2691.  
  2692. CCSSP.GetObjectContainTop = function(obj)
  2693. {// retrieve the y coordinate of a posionable object relative to it's parent element
  2694.     if( gbBsNS4 )
  2695.         return obj.pageY;
  2696.     else
  2697.     {
  2698.         if( obj == document.body )
  2699.             return obj.clientTop;
  2700.         else
  2701.             return obj.offsetTop;
  2702.     }
  2703. }
  2704.  
  2705. CCSSP.GetObjectWindowTop = function(obj)
  2706. {// retrieve the y coordinate of a posionable object relative to browser window
  2707.     if( gbBsNS4 )
  2708.         return obj.pageY;
  2709.     else
  2710.     {
  2711.         var nOffsetWindowTop = 0;
  2712.         for(var element = obj; element; element = element.offsetParent)
  2713.             nOffsetWindowTop += CCSSP.GetObjectContainTop(element);
  2714.         return nOffsetWindowTop;
  2715.     }
  2716. }
  2717.  
  2718. CCSSP.GetObjectHeight = function(obj)
  2719. {// retrieve the height of a posionable object
  2720.     if( gbBsNS4 )
  2721.         return obj.clip.height;
  2722.     else
  2723.         return obj.offsetHeight;
  2724. }
  2725.  
  2726. CCSSP.GetObjectWidth = function(obj)
  2727. {// retrieve the width of a posionable object
  2728.     if( gbBsNS4 )
  2729.         return obj.clip.width;
  2730.     else
  2731.         return obj.offsetWidth;
  2732. }
  2733.  
  2734. CCSSP.RegisterEventHandler = function( srcObj, rawEventName, funcHandler )
  2735. { // to add the "funcHandler" as the "rawEventName" 's handler to the "srcObj" object,the original event handler will be combined
  2736.     if (gbBsNS4 && !gbBsNS6)
  2737.         return ;
  2738.         
  2739.     var oldHandler = "";
  2740.  
  2741.     if (gbBsMac &&gbBsIE4&&!gbBsIE5)
  2742.     {
  2743.         if (typeof(srcObj[rawEventName.toLowerCase()])=="unknown")
  2744.         { //search for <SCRIPT> tag which define the event handler
  2745.             for( var i = 0; i < document.scripts.length; i++ ) 
  2746.             {
  2747.                 var script = document.scripts[i];
  2748.                 if( (script.htmlFor == srcObj.id || script.htmlFor == srcObj ) && script.event == rawEventName )
  2749.                 {
  2750.                     oldHandler = script.innerHTML;
  2751.                     break;
  2752.                 }
  2753.             }
  2754.         }
  2755.     }
  2756.     else
  2757.     {
  2758.         var oldInlineHandler = srcObj[rawEventName.toLowerCase()];
  2759.         if( oldInlineHandler != null && typeof(oldInlineHandler) != "undefined")
  2760.         {
  2761.             var functionDefinition = oldInlineHandler.toString();
  2762.             var bodyStart = functionDefinition.indexOf( "{" );
  2763.             var bodyEnd = functionDefinition.lastIndexOf( "}" );
  2764.             if( bodyStart > 0 || bodyEnd > bodyStart )
  2765.                 oldHandler = functionDefinition.substr( bodyStart + 1, bodyEnd - bodyStart - 2 );
  2766.         }
  2767.         else if( gbBsIE4 )
  2768.         { //search for <SCRIPT> tag which define the event handler
  2769.             for( var i = 0; i < document.scripts.length; i++ ) 
  2770.             {
  2771.                 var script = document.scripts[i];
  2772.                 if( (script.htmlFor == srcObj.id || script.htmlFor == srcObj ) && script.event == rawEventName )
  2773.                 {
  2774.                     oldHandler = script.innerHTML;
  2775.                     break;
  2776.                 }
  2777.             }
  2778.         }
  2779.     }
  2780.     if( oldHandler.indexOf(funcHandler) >= 0 )
  2781.         return;// to prevent register the funtion twice.
  2782.  
  2783.     if( gbBsNS4 ) // only "onload, onresize, onfocus" apply to window
  2784.     {// other raw events will apply to layer
  2785.         var noOn = rawEventName.substring(2, rawEventName.length);
  2786.         if( typeof(noOn) == "string" && noOn.length > 3 ) {
  2787.             if (srcObj.captureEvents)
  2788.                 srcObj.captureEvents( Event[noOn.toUpperCase()] );
  2789.         }
  2790.     }
  2791.     
  2792.     var newHandler = oldHandler;
  2793.     if( newHandler.length == 0 )
  2794.         newHandler = funcHandler;
  2795.     else
  2796.         newHandler += "; " + funcHandler;
  2797.     
  2798.     srcObj[rawEventName.toLowerCase()] = new Function( newHandler );
  2799. }
  2800.  
  2801. CCSSP.GetWindowHeight = function()
  2802. {// retrieve the height of available content in browser window
  2803.     if( gbBsNS4 )
  2804.         return window.innerHeight;
  2805.     else
  2806.         return document.body.clientHeight;
  2807. }
  2808.  
  2809. CCSSP.GetWindowBottom = function()
  2810. {// retrieve the bottom postion of browser window
  2811.     if( gbBsNS4 )
  2812.         return window.outerHeight + window.pageYOffset;
  2813.     else
  2814.         return document.body.clientHeight + document.body.scrollTop;
  2815. }
  2816.  
  2817. CCSSP.GetWindowWidth = function()
  2818. {// retrieve the width of available content in browser window
  2819.     if( gbBsNS4 )
  2820.         return window.innerWidth;
  2821.     else
  2822.         return document.body.clientWidth;
  2823. }
  2824.  
  2825. CCSSP.GetWindowRight = function()
  2826. {// retrieve the right postion of browser window
  2827.     if( gbBsNS4 )
  2828.         return window.outerWidth + window.pageXOffset;
  2829.     else
  2830.         return document.body.clientWidth + document.body.scrollLeft;
  2831. }
  2832.  
  2833. CCSSP.TrimString = function( objString, subtrim )
  2834. {// to trim the "subtrim" in the beginning and ending of a string object
  2835.     if( typeof(subtrim) != "string" || subtrim == null )
  2836.         return objString;
  2837.     var strHead = objString.substring(0, 1);
  2838.     var strRear = objString.substring(objString.length-1, objString.length);
  2839.     if( strHead != subtrim && strRear != subtrim )
  2840.         return objString;
  2841.     
  2842.     var spacePos = objString.indexOf(subtrim);
  2843.     if( spacePos < 0 )
  2844.         return objString;
  2845.     else if( spacePos == objString.length - 1 )
  2846.         return objString.substring(0, spacePos);
  2847.     else
  2848.     {
  2849.         var newString = objString.substring( spacePos + 1, objString.length);
  2850.         return CCSSP.TrimString( newString, subtrim );
  2851.     }
  2852. }
  2853.  
  2854. CCSSP.TrimSpace = function( objString )
  2855. {
  2856.     var Trim1 = CCSSP.TrimString( objString, " ");
  2857.     return CCSSP.TrimString( Trim1, "\'");
  2858. }
  2859.  
  2860. CCSSP.GetEventElement = function( navEventObject )
  2861. {// to get the element who fired the current event
  2862.     if(gbBsNS4) 
  2863.         if (gbBsNS6)
  2864.             return null;
  2865.         else
  2866.              navEventObject.target;
  2867.     else
  2868.         return event.srcElement;
  2869. }
  2870.  
  2871. CCSSP.PrepareFilter = function( Obj )
  2872. {//to prepare for making the filter work
  2873.     Obj.style.filter = "";
  2874.     if( Obj.style.width != "" || Obj.style.height != "" || Obj.style.position == "absolute" )
  2875.         return;
  2876.     Obj.style.height = CCSSP.GetObjectHeight(Obj);
  2877. }
  2878.  
  2879. CCSSP.IsDescendant = function( progenitor, progeny )
  2880. {
  2881.     if( typeof(progeny) == "undefined" || progeny == null )
  2882.         return false;
  2883.     else if( progeny == progenitor )
  2884.         return true; 
  2885.     else if( progeny.id == progenitor.id ) 
  2886.         return true; 
  2887.     else if( getParentNode(progeny) == getParentNode(progenitor))
  2888.         return false;
  2889.     else
  2890.         return CCSSP.IsDescendant( progenitor, getParentNode(progeny));
  2891. }
  2892.  
  2893. CCSSP.IsTextTag = function( Obj )
  2894. {
  2895.     if( typeof( Obj.tagName ) == "undefined" )
  2896.         return false;
  2897.     return( Obj.tagName.indexOf("H") == 0 || Obj.tagName == "P" || 
  2898.             Obj.tagName == "FONT" || Obj.tagName == "SPAN" );
  2899. }
  2900.  
  2901. //End JavaScript libary for cross-platform positioning object.
  2902.  
  2903. /// Section End  - CCSSP DHTM (JavaScript 1.2)
  2904.  
  2905. /// Section Begin  - CCSSP DHTM 1 (JavaScript 1.2)
  2906.  
  2907. //Begin the definition of class CTrigger
  2908. function CTrigger( TriggerElement )
  2909. {
  2910.     // object : the trigger element. Never be null. 
  2911.     this.eleTrigger = TriggerElement;
  2912.     
  2913.     // number : the click counter number: only 3 values: 0,1,2;
  2914.     this.nCounter = 0; 
  2915.     
  2916.     //object as associative array of string:
  2917.     // the associate target ID strings; one element at least.            
  2918.     this.objStrTarget = new Object();
  2919.     this.eleTrigger.style.cursor = "hand";
  2920.     if( this.eleTrigger.tagName == "AREA" && this.eleTrigger.getAttribute("href") == "" )
  2921.         this.eleTrigger.setAttribute("href", "#") // to make a hand cursor for image map
  2922. }
  2923.  
  2924. CTrigger.prototype.AddTargetID = function( strTargetID )
  2925. {// add one target ID string to the objStrTarget
  2926.     if( typeof(strTargetID) != "string" )
  2927.         return ;
  2928.     if( typeof(this.objStrTarget[strTargetID]) != "string" )
  2929.         this.objStrTarget[strTargetID] = strTargetID;
  2930. }
  2931.  
  2932. CTrigger.prototype.OnTriggerClick = function()
  2933. {// to activate all asociated target
  2934.     var strEventType = ( (this.nCounter++)% 2 == 0 ) ? 
  2935.         "bssctrigger1" : "bssctrigger2";
  2936.         
  2937.     // to enumerate associative target element's ID string
  2938.     for( var strTargetID in this.objStrTarget ) 
  2939.         CEngine.SendEventToOneTarget( strTargetID, strEventType );
  2940. }
  2941. //End the definition of class CTrigger
  2942.  
  2943. //Begin the definition of class CTarget
  2944. function CTarget( TargetElement )
  2945. {
  2946.     // object : the target element. Never be null.
  2947.     this.eleTarget = TargetElement;
  2948.     this.objManager = new Object(); // object: the event manager
  2949.  
  2950. CTarget.nPageClickCounter = 0;// static class property.
  2951.  
  2952. CTarget.prototype.GetAgencyObject = function(str_action_type,action_setting )
  2953. {// return the action agency ( effect )object's refernece 
  2954.     switch( str_action_type )
  2955.     {
  2956.     case "show":return new CAgencyShow( this.eleTarget, true ) ;
  2957.     case "hide":return new CAgencyShow( this.eleTarget, false ) ;
  2958.  
  2959.     case "flyin" : 
  2960.         return new CAgencyFly(this.eleTarget, action_setting, true);
  2961.     case "flyout" : 
  2962.         return new CAgencyFly(this.eleTarget, action_setting, false);
  2963.     case "spiralin" : 
  2964.         return new CAgencySpiral(this.eleTarget, action_setting, true);
  2965.     case "spiralout" : 
  2966.         return new CAgencySpiral(this.eleTarget, action_setting, false);
  2967.     case "zoomin" :
  2968.         return new CAgencyZoom(this.eleTarget, action_setting, true);
  2969.     case "zoomout" : 
  2970.         return new CAgencyZoom(this.eleTarget, action_setting, false);
  2971.     case "elastic" : 
  2972.         return new CAgencyElastic(this.eleTarget, action_setting);
  2973.         
  2974.     case "fadein" : 
  2975.         return (gbBsIE4)? new CAgencyAlpha(this.eleTarget, action_setting, true) : null;
  2976.     case "fadeout" :
  2977.         return (gbBsIE4)? new CAgencyAlpha(this.eleTarget, action_setting, false) : null;
  2978.     case "rockrollstatic" :
  2979.     case "rockroll" :
  2980.         return (gbBsIE4)? new CAgencyWave(this.eleTarget, action_setting, false) : null;
  2981.  
  2982.     case "glow":
  2983.         return (gbBsIE4)? new CAgencyGlow(this.eleTarget,action_setting) : null;
  2984.     case "dropshadow":
  2985.         return (gbBsIE4)? new CAgencyDropShadow(this.eleTarget,action_setting) : null;
  2986.     case "transition" :
  2987.         return (gbBsIE4)? new CAgencyRevealTrans(this.eleTarget,action_setting) : null;
  2988.     case "blur" :
  2989.         return (gbBsIE4)? new CAgencyBlur(this.eleTarget,action_setting) : null;
  2990.  
  2991.     case "fliph" : // all these 4 do NOT need any parameters
  2992.     case "flipv" :
  2993.     case "invert":
  2994.     case "gray" :
  2995.         return (gbBsIE4)? new CAgencyChangeFilter(this.eleTarget, str_action_type) : null;
  2996.     
  2997.     case "fontchange": // the effects below change the style on the fly, so won't work in Navigator
  2998.         return (gbBsIE4)? new CAgencyFontChange(this.eleTarget,action_setting) : null;
  2999.     case "boderchange": 
  3000.     case "stylechange":
  3001.         return (gbBsIE4)? new CAgencyChangeStyle(this.eleTarget,action_setting) : null;
  3002.  
  3003.     default: return null;
  3004.     }
  3005. }
  3006.  
  3007. CTarget.prototype.SetEventManager = function( 
  3008.     one_event_type,str_action_type,action_setting,event_additional)
  3009. {// to set the event manager with specified action 
  3010.     if( typeof( one_event_type ) != "string" ||    
  3011.         typeof( str_action_type ) != "string"||
  3012.         typeof( action_setting ) != "string" )
  3013.         return false;
  3014.     if( typeof(this.objManager[one_event_type]) == "undefined" )
  3015.     {
  3016.         this.objManager[one_event_type] = new Object();
  3017.         this.objManager[one_event_type].length = 0;
  3018.     }
  3019.     
  3020.     var eventAgency = this.GetAgencyObject(str_action_type,action_setting);
  3021.     if( eventAgency != null )
  3022.     {
  3023.         var ct = this.objManager[one_event_type].length ++;
  3024.         this.objManager[one_event_type][ct] = eventAgency;
  3025.         
  3026.         if( one_event_type == "bsscpageclick" )
  3027.         {// to deal with the "number of pageclick" stuff
  3028.             if( typeof(event_additional) == "number" )
  3029.                 this.objManager[one_event_type][ct].nPageClick = event_additional;
  3030.             else // set the default number 
  3031.                 this.objManager[one_event_type][ct].nPageClick = 1;
  3032.             
  3033.             if( (typeof(this.objManager.nMinPageClickIndex) == "undefined") ||
  3034.                 (this.objManager[one_event_type][ct].nPageClick < 
  3035.                     this.objManager[one_event_type][this.objManager.nMinPageClickIndex].nPageClick) )
  3036.                 this.objManager.nMinPageClickIndex = ct;
  3037.         }
  3038.         
  3039.         //hide the object blindly,SetState function will take care of the final correct state
  3040.         if( ((one_event_type == "bsscpageclick") && 
  3041.              (this.objManager[one_event_type][ct].nPageClick == 1)) ||
  3042.             one_event_type == "bsscpageload" ||
  3043.             one_event_type == "bssctrigger1" )
  3044.             CCSSP.ShowObject( this.eleTarget, false );
  3045.         
  3046.         if( one_event_type == "bssctrigger1" || one_event_type == "bssctrigger2" )
  3047.             if( typeof( this.strTriggerEvent ) == "undefined" )
  3048.                 this.strTriggerEvent = ( one_event_type == "bssctrigger1" ) ? "bssctrigger2" : "bssctrigger1";
  3049.             
  3050.         return true;
  3051.     }
  3052.     return false;
  3053. }
  3054.  
  3055. CTarget.prototype.OnEvent = function( strBsscEvent )
  3056. {// response to the event ( bssc format )
  3057.     if( typeof(this.objManager[strBsscEvent]) == "object" )
  3058.     { // to get the event agency from the event manager
  3059.         var eventAgency = this.objManager[strBsscEvent];
  3060.         for( var i = 0; i < eventAgency.length; i++ )
  3061.         {
  3062.             if( strBsscEvent == "bsscpageclick" && 
  3063.                  eventAgency[i].nPageClick != CTarget.nPageClickCounter )
  3064.                  continue;
  3065.             else if( strBsscEvent == "bsschover" && event.type == "mouseout" )
  3066.                 eventAgency[i].EndEffect();
  3067.             else // to invoke the unified function in effect object    
  3068.                 eventAgency[i].UpdateEffect(); 
  3069.         }
  3070.     }
  3071. }
  3072.  
  3073. CTarget.prototype.SetState = function( strBsscEvent )
  3074. {
  3075.     if( typeof(this.objManager[strBsscEvent]) != "object" )
  3076.         return false;
  3077.  
  3078.     // to get the event agency from the event manager
  3079.     var eventAgency = this.objManager[strBsscEvent];
  3080.     
  3081.     if( strBsscEvent == "bsscpageclick" )
  3082.     {// we only set the initial state for the minium number of pageclick 
  3083.         eventAgency[this.objManager.nMinPageClickIndex].PrepareEffect();
  3084.         return true;
  3085.     }
  3086.     else
  3087.     {
  3088.         for( var i = 0; i < eventAgency.length; i++ )
  3089.             eventAgency[i].PrepareEffect(); // to invoke the unified function in effect object     
  3090.         if( i > 0 )
  3091.             return true;
  3092.         else
  3093.             return false;
  3094.     }
  3095. }
  3096. //End the definition of class CTarget
  3097.  
  3098. //Begin the definition of CEngine class
  3099. function CEngine(){}// all properities are going be "class" properities
  3100.  
  3101. // object : as associative array of trigger objects
  3102. CEngine.objTrigger = new Object();
  3103. // object : as associative array of target objects 
  3104. CEngine.objTarget = new Object(); 
  3105.  
  3106. // Array : each element is a CAgencyXXX animation object
  3107. CEngine.arrAnimation = new Array();
  3108. CEngine.PerformAnimation = function( nIndex )
  3109. {// animation : update effects function
  3110.     CEngine.arrAnimation[nIndex].UpdateEffect();
  3111. }
  3112.  
  3113. CEngine.AddOneTrigger = function(TriggerID,TriggerElement)
  3114. {// add one Trigger object into the trigger array
  3115.     if( typeof(TriggerID) != "string" || TriggerElement == null ||
  3116.         typeof(TriggerElement) != "object" )
  3117.         return;
  3118.     if( typeof(CEngine.objTrigger[TriggerID] ) != "object" )
  3119.         CEngine.objTrigger[TriggerID] = new CTrigger(TriggerElement);
  3120. }
  3121.     
  3122. CEngine.AddOneTarget = function(TargetID, TargetElement)
  3123. {// add one Target object into the target array
  3124.     if( typeof(TargetID) != "string" || TargetElement == null ||
  3125.         typeof(TargetElement) != "object" )
  3126.         return;
  3127.     if( typeof(CEngine.objTarget[TargetID]) != "object" )
  3128.         CEngine.objTarget[TargetID] = new CTarget( TargetElement );
  3129. }
  3130.  
  3131. CEngine.SendEventToOneTarget = function(strTargetID, strBsscEvent )
  3132. {// to activate one target object
  3133.     if( typeof(CEngine.objTarget[strTargetID]) == "object" ) 
  3134.     {
  3135.         if( strBsscEvent == "bssctrigger1" || strBsscEvent == "bssctrigger2" )
  3136.         {//now, the "bssctrigger1" and "bssctrigger2" work like a toggle
  3137.             if( strBsscEvent == CEngine.objTarget[strTargetID].strTriggerEvent )
  3138.                 strBsscEvent = (strBsscEvent == "bssctrigger1") ? "bssctrigger2" : "bssctrigger1";
  3139.             CEngine.objTarget[strTargetID].strTriggerEvent = strBsscEvent;
  3140.         }
  3141.         CEngine.objTarget[strTargetID].OnEvent( strBsscEvent );
  3142.     }
  3143. }
  3144.  
  3145. CEngine.SendEventToAllTarget = function( strBsscEvent )
  3146. { //to activate all target associative to the BSSC event
  3147.     for( var strTargetID in CEngine.objTarget ) //to enumerate all target
  3148.         CEngine.SendEventToOneTarget( strTargetID, strBsscEvent );
  3149. }
  3150.  
  3151. CEngine.SetOneTargetInitialState = function( strTargetID )
  3152. {// only invoked after ALL effects for the target have been set
  3153.     if( typeof(CEngine.objTarget[strTargetID]) == "object" ) 
  3154.     {// to get target object
  3155.         var objTarget = CEngine.objTarget[strTargetID];
  3156.         if( objTarget.SetState( "bsscpageload" ) == false )
  3157.         {
  3158.             objTarget.SetState( "bsscpageclick" );
  3159.             objTarget.SetState( "bssctrigger1" );
  3160.         }
  3161.     }
  3162. }
  3163.  
  3164. CEngine.AdjustPageClickCounter = function()
  3165. {
  3166.     var nAdjustedClickCounter = CTarget.nPageClickCounter;
  3167.     var bAdjusted = false;
  3168.     for( var strTargetID in CEngine.objTarget ) //to enumerate all target
  3169.     {// try to find the minum pageCliclConter greater than CTarget.nPageClickCounter
  3170.         var objEventPageClick = CEngine.objTarget[strTargetID].objManager.bsscpageclick;
  3171.         if( objEventPageClick != null )
  3172.         {
  3173.             for( var i = 0; i < objEventPageClick.length; i++ )
  3174.             {
  3175.                 var nOtherPageClick = objEventPageClick[i].nPageClick;
  3176.                 if( nOtherPageClick == CTarget.nPageClickCounter )
  3177.                     return;
  3178.                 if( nOtherPageClick > CTarget.nPageClickCounter )
  3179.                 {
  3180.                     if( !bAdjusted )
  3181.                     {
  3182.                         nAdjustedClickCounter = nOtherPageClick;
  3183.                         bAdjusted = true;
  3184.                     }
  3185.                     else if( nOtherPageClick < nAdjustedClickCounter )
  3186.                         nAdjustedClickCounter = nOtherPageClick;
  3187.                 }
  3188.             }
  3189.         }
  3190.     }
  3191.     CTarget.nPageClickCounter = nAdjustedClickCounter;
  3192. }
  3193.  
  3194. CEngine.OnPageLoad = function()
  3195. {     
  3196.     // first, to set all target's initial state
  3197.     for( var strTargetID in CEngine.objTarget )
  3198.         CEngine.SetOneTargetInitialState( strTargetID );
  3199.     
  3200.     // to invoke all target's onpageload handler
  3201.     CEngine.SendEventToAllTarget( "bsscpageload" );
  3202. }
  3203.  
  3204. CEngine.OnPageClick = function()
  3205. { // to invoke all target's onpageclick handler
  3206.     var src = CCSSP.GetEventElement( arguments[0] );
  3207.     if( src == null )
  3208.         return;
  3209.         
  3210.     var objClickedTrigger = null;
  3211.     for( var strTriggerID in CEngine.objTrigger )
  3212.     { // to detect which trigger is clicked
  3213.         if( CCSSP.IsDescendant( CEngine.objTrigger[strTriggerID].eleTrigger,src) )
  3214.         {
  3215.             objClickedTrigger = CEngine.objTrigger[strTriggerID];
  3216.             break;
  3217.         }
  3218.     }
  3219.     
  3220.     if( objClickedTrigger != null) // the clicked trigger found
  3221.         objClickedTrigger.OnTriggerClick();
  3222.     else // no trigger is clicked
  3223.     { // to send PageClick event to all target
  3224.         CTarget.nPageClickCounter++;
  3225.         CEngine.AdjustPageClickCounter();
  3226.         CEngine.SendEventToAllTarget( "bsscpageclick" );
  3227.     }
  3228. }    
  3229.  
  3230. CEngine.OnMouseOver = function()
  3231. { // to invoke all target's onpageload handler
  3232.     var src = CCSSP.GetEventElement( arguments[0] );
  3233.     if( src == null )
  3234.         return;
  3235.         
  3236.     var strHoveredTargetID = null;
  3237.     for( var strTargetID in CEngine.objTarget )
  3238.     { // to detect which Target is hovering on
  3239.         if( CCSSP.IsDescendant( CEngine.objTarget[strTargetID].eleTarget, src ) )
  3240.         {
  3241.             strHoveredTargetID = strTargetID;
  3242.             break;
  3243.         }
  3244.     }
  3245.     
  3246.     if( strHoveredTargetID != null ) // the hovered target found
  3247.         CEngine.SendEventToOneTarget( strHoveredTargetID, "bsschover" );
  3248. }
  3249.  
  3250. CEngine.BuildTargetObject = function(target_ID,event_type,action_type,
  3251.             action_setting, event_additional)
  3252. {// to build target object 
  3253.     // to get the target object
  3254.     if( typeof( CEngine.objTarget[target_ID] ) != "object" )
  3255.         return false;// the engine's AddOneTarget function might have failed.
  3256.     var TargetObject = CEngine.objTarget[target_ID];
  3257.     
  3258.     // to prepare the parameters for the event manager
  3259.     var arrEvent = event_type.split("|"); // to split the combined event_type string
  3260.     var arrAction = action_type.split("|");//to split the combined action_type string
  3261.     for( var trim = 0; trim < arrEvent.length; trim++ )
  3262.         arrEvent[trim] = CCSSP.TrimSpace(arrEvent[trim]);
  3263.     
  3264.     for( trim = 0; trim < arrAction.length; trim++ )
  3265.         arrAction[trim] = CCSSP.TrimSpace(arrAction[trim]);
  3266.     
  3267.     var arrSetting = new Array(); 
  3268.     if( typeof(action_setting) == "string" )
  3269.         arrSetting = action_setting.split("|");// to split the combined action_setting string
  3270.     // to calibrate the arrays
  3271.     for( var i = arrSetting.length; i < arrAction.length; i++ )
  3272.     {
  3273.         if( typeof(arrSetting[i]) != "string" )
  3274.              arrSetting[i] = "";
  3275.     }                 
  3276.  
  3277.     // to prepare for dealing with the absolute posioning element
  3278.     TargetObject.eleTarget.ABSX = CCSSP.GetObjectLeft( TargetObject.eleTarget );
  3279.     TargetObject.eleTarget.ABSY = CCSSP.GetObjectTop( TargetObject.eleTarget );
  3280.  
  3281.     if( arrEvent.length > 1 )
  3282.     {// if event is combined, it must be : "bssctrigger1 | bssctrigger2"
  3283.         if( arrAction.length != 2 )
  3284.             return false; // if event is combined, there must be 2 actions
  3285.         for( i = 0 ; i < 2; i++ )
  3286.         {
  3287.             if( TargetObject.SetEventManager(arrEvent[i], arrAction[i], 
  3288.                 arrSetting[i], event_additional) == false )
  3289.                 return false; // the event manager has not been set up
  3290.         }
  3291.     }
  3292.     else // the event_type string is not combined
  3293.     {
  3294.         for( i = 0 ; i < arrAction.length; i++ )
  3295.         {
  3296.             TargetObject.SetEventManager(event_type, arrAction[i], arrSetting[i], event_additional);
  3297.             // to validate the event manager
  3298.             if( typeof(TargetObject.objManager[event_type]) != "object" ||
  3299.                     typeof(TargetObject.objManager[event_type][i]) != "object" )
  3300.                 return false; // the event manager has not been set up
  3301.         }
  3302.     }
  3303.     return true;
  3304. }
  3305.  
  3306. CEngine.BuildTriggerObject = function(trigger_ID, target_ID)
  3307. {// to build the trigger object
  3308.     var arrTrigger = trigger_ID.split("|"); // to split the combined trigger_ID string
  3309.     for( var i = 0; i < arrTrigger.length; i ++ )
  3310.     {// to get the trigger element then add it to the trigger list
  3311.         arrTrigger[i] = CCSSP.TrimSpace( arrTrigger[i] );
  3312.         var eleTrigger = CCSSP.GetObject( arrTrigger[i] );
  3313.         if( eleTrigger == null )
  3314.             continue; // the trigger_ID string in the HTML code maybe wrong
  3315.         CEngine.AddOneTrigger( arrTrigger[i], eleTrigger );
  3316.  
  3317.         // to get the target object
  3318.         if( typeof( this.objTrigger[arrTrigger[i]] ) != "object" )
  3319.             continue;// the engine's AddOneTarget function might have failed.
  3320.         CEngine.objTrigger[arrTrigger[i]].AddTargetID( target_ID );
  3321.     }
  3322. }
  3323. //End the definition of CEngine class
  3324.  
  3325. /// Section End  - CCSSP DHTM 1 (JavaScript 1.2)
  3326.  
  3327. /// Section Begin  - CCSSP DHTM 2 (JavaScript 1.2)
  3328.  
  3329. //Begin the definition of CAgencyXXXX classes
  3330.  
  3331. //Begin of the CAgencyShow definition
  3332. function CAgencyShow( element, bIsShow )
  3333. {
  3334.     this.ele = element;
  3335.     this.bIsShow = bIsShow;
  3336. }
  3337.  
  3338. CAgencyShow.prototype.PrepareEffect = function()
  3339. {
  3340.     CCSSP.ShowObject( this.ele, !this.bIsShow );
  3341. }
  3342.  
  3343. CAgencyShow.prototype.UpdateEffect = function()
  3344. {
  3345.     CCSSP.ShowObject( this.ele, this.bIsShow );
  3346. }
  3347.  
  3348. CAgencyShow.prototype.EndEffect = function()
  3349. {
  3350.     CCSSP.ShowObject( this.ele, !this.bIsShow );
  3351. }
  3352. // End of the CAgencyShow definition
  3353.  
  3354. // Begin of CAgencyFly definition
  3355. function CAgencyFly( element, settings, bIsIn )
  3356. {
  3357.     this.ele = element;
  3358.     this.bIsIn = bIsIn;
  3359.     this.duration = 1000; // default
  3360.     this.direction = "right";
  3361.  
  3362.     var arrAllSet = settings.split(",");
  3363.     for( var i = 0; i < arrAllSet.length; i ++ )
  3364.     {// to retrieve the setting
  3365.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3366.         var arrOneSet = arrAllSet[i].split("=");
  3367.         for( var j = 0; j < arrOneSet.length; j++ )
  3368.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3369.         switch( arrOneSet[0] )
  3370.         {
  3371.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3372.         case "direction" : this.direction = arrOneSet[1]; break;
  3373.         }
  3374.     }
  3375.         
  3376.     if( gbBsIE5 && this.ele.style.position != "absolute" )
  3377.         this.ele.style.position = "relative";
  3378.     this.timer = null;
  3379.     this.aniIndex = CEngine.arrAnimation.length;
  3380.     CEngine.arrAnimation[this.aniIndex] = this;
  3381. }
  3382.  
  3383. CAgencyFly.prototype.PrepareEffect = function()
  3384. {
  3385.     CCSSP.ShowObject(this.ele, !this.bIsIn );
  3386. }
  3387.  
  3388. CAgencyFly.prototype.UpdateEffect = function()
  3389. {
  3390.     if( this.timer == null )
  3391.         this.ResetParameters();
  3392.  
  3393.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3394.     if( percent >= 1.0 )
  3395.         this.EndEffect();
  3396.     else
  3397.     {
  3398.         var newX = this.startX*(1.0-percent) +  this.finalX*percent;
  3399.         var newY = this.startY*(1.0-percent) +  this.finalY*percent;
  3400.         CCSSP.MoveObjectTo(this.ele, newX, newY);
  3401.         if( this.timer == null )
  3402.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3403.     }
  3404. }
  3405.  
  3406. CAgencyFly.prototype.EndEffect = function()
  3407. {
  3408.     clearInterval( this.timer );
  3409.     this.timer = null;
  3410.  
  3411.     if( this.bIsIn ) // FlyIn
  3412.         CCSSP.MoveObjectTo(this.ele, this.finalX, this.finalY);
  3413.     else // FlyOut
  3414.         CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3415.     CCSSP.ShowObject(this.ele, this.bIsIn );
  3416. }
  3417.  
  3418. CAgencyFly.prototype.ResetParameters = function()
  3419. {
  3420.     this.PrepareEffect();
  3421.     CCSSP.ShowObject(this.ele, true );
  3422.  
  3423.     this.startX = 0;
  3424.     this.startY = 0;
  3425.     this.finalX = 0;
  3426.     this.finalY = 0; 
  3427.     
  3428.     var offsetLeft = CCSSP.GetObjectWindowLeft(this.ele) + this.ele.offsetWidth;
  3429.     var offsetTop = CCSSP.GetObjectWindowTop(this.ele) + this.ele.offsetHeight;
  3430.     var offsetRight = CCSSP.GetWindowRight();
  3431.     var offsetBottom = CCSSP.GetWindowBottom();
  3432.  
  3433.     if( this.bIsIn )
  3434.     { // FlyIn
  3435.         this.finalX = this.ele.ABSX;
  3436.         this.finalY = this.ele.ABSY;
  3437.  
  3438.         switch( this.direction )
  3439.         {
  3440.         case "right": this.startX = offsetRight; this.startY = this.finalY; break;
  3441.         case "left": this.startX = -offsetLeft;  this.startY = this.finalY; break;
  3442.         case "down": this.startY = offsetBottom; this.startX = this.finalX; break;
  3443.         case "up":  this.startY = -offsetTop;    this.startX = this.finalX; break;
  3444.         case "downright":
  3445.               this.startX = ( offsetBottom < offsetRight) ? offsetBottom : offsetRight;
  3446.             this.startY = this.startX;        break;
  3447.         case "upright":
  3448.               this.startX = (offsetTop < offsetRight)? offsetTop : offsetRight;
  3449.             this.startY = -this.startX;        break;
  3450.         case "upleft":
  3451.             this.startX = -((offsetTop < offsetRight)? offsetTop : offsetRight);
  3452.             this.startY = this.startX;        break;
  3453.         case "downleft":
  3454.             this.startX = -(( offsetBottom < offsetRight) ? offsetBottom : offsetRight);
  3455.             this.startY = -this.startX;     break;
  3456.         }
  3457.     }
  3458.     else
  3459.     { // FlyOut
  3460.         this.startX = this.ele.ABSX;
  3461.         this.startY = this.ele.ABSY;
  3462.  
  3463.         switch( this.direction )
  3464.         {
  3465.         case "right": this.finalX = offsetRight;  this.finalY = this.startY; break;
  3466.         case "left": this.finalX = -offsetLeft;   this.finalY = this.startY;  break;
  3467.         case "down": this.finalY = offsetBottom;  this.finalX = this.startX; break;
  3468.         case "up":  this.finalY = -offsetTop;     this.finalX = this.startX; break;
  3469.         case "downright":
  3470.               this.finalX = ( offsetBottom < offsetRight) ? offsetBottom : offsetRight;
  3471.             this.finalY = this.finalX;        break;
  3472.         case "upright":
  3473.               this.finalX = (offsetTop < offsetRight)? offsetTop : offsetRight;
  3474.             this.finalY = -this.finalX;        break;
  3475.         case "upleft":
  3476.             this.finalX = -((offsetTop < offsetRight)? offsetTop : offsetRight);
  3477.             this.finalY = this.finalX;        break;
  3478.         case "downleft":
  3479.             this.finalX = -(( offsetBottom < offsetRight) ? offsetBottom : offsetRight);
  3480.             this.finalY = -this.finalX;     break;
  3481.         }
  3482.     }
  3483.     CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3484.     this.startTime = (new Date()).getTime();
  3485. }
  3486. // End of the CAgencyFly definition
  3487.  
  3488. // Begin of CAgencySpiral
  3489. function CAgencySpiral( element, settings, bIsIn )
  3490. {
  3491.     this.ele = element;
  3492.     this.bIsIn = bIsIn;
  3493.     this.duration = 1000; // default
  3494.  
  3495.     var arrAllSet = settings.split(",");
  3496.     for( var i = 0; i < arrAllSet.length; i ++ )
  3497.     {// to retrieve the setting
  3498.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3499.         var arrOneSet = arrAllSet[i].split("=");
  3500.         for( var j = 0; j < arrOneSet.length; j++ )
  3501.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3502.         switch( arrOneSet[0] )
  3503.         {
  3504.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3505.         }
  3506.     }
  3507.  
  3508.     if( gbBsIE5 && this.ele.style.position != "absolute" )
  3509.         this.ele.style.position = "relative";
  3510.     this.timer = null;
  3511.     this.aniIndex = CEngine.arrAnimation.length;
  3512.     CEngine.arrAnimation[this.aniIndex] = this;
  3513. }
  3514.  
  3515. CAgencySpiral.prototype.PrepareEffect = function()
  3516. {
  3517.     CCSSP.ShowObject(this.ele, !this.bIsIn );
  3518. }
  3519.  
  3520. CAgencySpiral.prototype.UpdateEffect = function()
  3521. {
  3522.     if( this.timer == null )
  3523.         this.ResetParameters();
  3524.  
  3525.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3526.     if( percent >= 1.0 )
  3527.         this.EndEffect();
  3528.     else
  3529.     {
  3530.         var rf = (this.bIsIn)? (1.0 - percent) : percent; 
  3531.         var t = (1.0-rf) * 4.0 * Math.PI
  3532.         var rxP = (this.bIsIn)? this.startX : this.finalX; 
  3533.         var ryP = (this.bIsIn)? this.startY : this.finalY; 
  3534.         var rx = (Math.abs(rxP) < 200) ? Math.abs(rxP) : 200;
  3535.         var ry = (Math.abs(ryP) < 200) ? Math.abs(ryP) : 200;
  3536.  
  3537.         var newX = Math.ceil(-rf*Math.cos(t)*rx) + this.ele.ABSX;
  3538.         var newY = Math.ceil(-rf*Math.sin(t)*ry) + this.ele.ABSY;
  3539.         CCSSP.MoveObjectTo(this.ele, newX, newY);
  3540.         if( this.timer == null )
  3541.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3542.     }
  3543. }
  3544.  
  3545. CAgencySpiral.prototype.EndEffect = function()
  3546. {
  3547.     clearInterval( this.timer );
  3548.     this.timer = null;
  3549.     
  3550.     if( this.bIsIn ) // In
  3551.         CCSSP.MoveObjectTo(this.ele, this.finalX, this.finalY);
  3552.     else // Out
  3553.         CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3554.     CCSSP.ShowObject(this.ele, this.bIsIn );
  3555. }
  3556.  
  3557. CAgencySpiral.prototype.ResetParameters = function()
  3558. {
  3559.     this.PrepareEffect();
  3560.     CCSSP.ShowObject(this.ele, true );
  3561.     this.startX = (this.bIsIn)? CCSSP.GetWindowRight() : this.ele.ABSX;
  3562.     this.startY = (this.bIsIn)? CCSSP.GetWindowBottom() : this.ele.ABSY;
  3563.     this.finalX = (this.bIsIn)? this.ele.ABSX : CCSSP.GetWindowRight();
  3564.     this.finalY = (this.bIsIn)? this.ele.ABSY : CCSSP.GetWindowBottom(); 
  3565.     
  3566.     CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3567.     this.startTime = (new Date()).getTime();
  3568. }
  3569. // End of CAgencySpiral
  3570.  
  3571. // Begin of CAgencyElastic
  3572. function CAgencyElastic( element, settings)
  3573. {
  3574.     this.ele = element;
  3575.     this.duration = 1000; // default
  3576.     this.direction = "right";
  3577.  
  3578.     var arrAllSet = settings.split(",");
  3579.     for( var i = 0; i < arrAllSet.length; i ++ )
  3580.     {// to retrieve the setting
  3581.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3582.         var arrOneSet = arrAllSet[i].split("=");
  3583.         for( var j = 0; j < arrOneSet.length; j++ )
  3584.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3585.         switch( arrOneSet[0] )
  3586.         {
  3587.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3588.         case "direction" : this.direction = arrOneSet[1]; break;
  3589.         }
  3590.     }
  3591.         
  3592.     if( gbBsIE5 && this.ele.style.position != "absolute" )
  3593.         this.ele.style.position = "relative";
  3594.     this.timer = null;
  3595.     this.aniIndex = CEngine.arrAnimation.length;
  3596.     CEngine.arrAnimation[this.aniIndex] = this;
  3597. }
  3598.  
  3599. CAgencyElastic.prototype.PrepareEffect = function()
  3600. {
  3601.     CCSSP.ShowObject(this.ele, false );
  3602. }
  3603.  
  3604. CAgencyElastic.prototype.UpdateEffect = function()
  3605. {
  3606.     if( this.timer == null )
  3607.         this.ResetParameters();
  3608.  
  3609.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3610.     if( percent >= 1.0 )
  3611.         this.EndEffect();
  3612.     else
  3613.     {
  3614.         var newX = this.startX;
  3615.         var newY = this.startY;
  3616.         var rf = Math.exp(-percent*3);
  3617.         var t = percent * 1.5 * Math.PI
  3618.         var rx = (Math.abs(this.startX) > Math.abs(this.startY)) ? this.startX : this.startY;
  3619.         switch (this.direction )
  3620.         {
  3621.         case "left":   
  3622.         case "right" : newX = rf*Math.cos(t)*rx + this.ele.ABSX; break;
  3623.         case "up":       
  3624.         case "down" :  newY = rf*Math.cos(t)*rx + this.ele.ABSX; break;
  3625.         }
  3626.         CCSSP.MoveObjectTo(this.ele, newX, newY);
  3627.         if( this.timer == null )
  3628.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3629.     }
  3630. }
  3631.  
  3632. CAgencyElastic.prototype.EndEffect = function()
  3633. {
  3634.     CCSSP.MoveObjectTo(this.ele, this.finalX, this.finalY);
  3635.     clearInterval( this.timer );
  3636.     this.timer = null;
  3637. }
  3638.  
  3639. CAgencyElastic.prototype.ResetParameters = function()
  3640. {
  3641.     CCSSP.ShowObject(this.ele, true );
  3642.     this.startX = this.ele.ABSX;
  3643.     this.finalX = this.ele.ABSX;
  3644.     this.startY = this.ele.ABSY;
  3645.     this.finalY = this.ele.ABSY;
  3646.     
  3647.     switch (this.direction)
  3648.     { 
  3649.     case "left":  this.startX = -this.ele.offsetWidth; break;
  3650.     case "right": this.startX = this.ele.offsetWidth;  break;
  3651.     case "up":    this.startY = -this.ele.offsetHeight;break;
  3652.     case "down":  this.startY = this.ele.offsetHeight; break;
  3653.     }
  3654.     CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3655.     this.startTime = (new Date()).getTime();
  3656. }
  3657. // End of CAgencyElastic
  3658.  
  3659. // Begin of CAgencyZoom
  3660. function CAgencyZoom( element, settings, bIsIn)
  3661. {
  3662.     this.ele = element;
  3663.     this.duration = 1000; // default
  3664.     
  3665.     var arrAllSet = settings.split(",");
  3666.     for( var i = 0; i < arrAllSet.length; i ++ )
  3667.     {// to retrieve the setting
  3668.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3669.         var arrOneSet = arrAllSet[i].split("=");
  3670.         for( var j = 0; j < arrOneSet.length; j++ )
  3671.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3672.         switch( arrOneSet[0] )
  3673.         {
  3674.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3675.         }
  3676.     }
  3677.  
  3678.     this.bIsIn = bIsIn;
  3679.     this.timer = null;
  3680.     this.aniIndex = CEngine.arrAnimation.length;
  3681.     CEngine.arrAnimation[this.aniIndex] = this;
  3682. }
  3683.  
  3684. CAgencyZoom.prototype.PrepareEffect = function()
  3685. {
  3686.     CCSSP.ShowObject(this.ele, false);
  3687. }
  3688.  
  3689. CAgencyZoom.prototype.UpdateEffect = function()
  3690. {
  3691.     if( this.timer == null )
  3692.         this.ResetParameters();
  3693.  
  3694.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3695.     if( percent >= 1.0 )
  3696.         this.EndEffect();
  3697.     else
  3698.     {
  3699.         var nFactorIn = Math.ceil(50+50*percent);
  3700.         var nFactorOut = Math.ceil(100+200*(1-percent));
  3701.         var AlterFontsize = ((this.bIsIn)? nFactorIn : nFactorOut) + "%";
  3702.         var AlterFactor = ((this.bIsIn)? nFactorIn : nFactorOut) / 100;
  3703.         
  3704.         this.UpdateEffectAllChildren(this.ele, AlterFontsize, AlterFactor);
  3705.         for(var index = 0; index < this.ele.all.length; index++)
  3706.             this.UpdateEffectAllChildren(this.ele.all[index], AlterFontsize, AlterFactor);
  3707.             
  3708.         if( this.timer == null )
  3709.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3710.     }
  3711. }
  3712.  
  3713. CAgencyZoom.prototype.UpdateEffectAllChildren = function(child, FontSize, Factor)
  3714. {
  3715.     if( CCSSP.IsTextTag(child) )
  3716.         child.style.fontSize = FontSize;
  3717.     else
  3718.     {
  3719.         if( typeof(child.orgWidth) == "number" )
  3720.             child.style.width = Factor * child.orgWidth;
  3721.         if( typeof(child.orgHeight) == "number" )
  3722.             child.style.height = Factor * child.orgHeight;
  3723.     }
  3724. }
  3725.  
  3726. CAgencyZoom.prototype.EndEffect = function()
  3727. {
  3728.     this.EndEffectAllChildren(this.ele);
  3729.     for(var index = 0; index < this.ele.all.length; index++)
  3730.         this.EndEffectAllChildren(this.ele.all[index]);
  3731.     
  3732.     clearInterval( this.timer );
  3733.     this.timer = null;
  3734. }
  3735.  
  3736. CAgencyZoom.prototype.EndEffectAllChildren = function( child )
  3737. {    
  3738.     if( CCSSP.IsTextTag(child) )
  3739.         child.style.fontSize = child.orgFontSize;
  3740.     else
  3741.     {
  3742.         if( typeof(child.intactWidth) != "undefined" )
  3743.         {
  3744.             child.width = child.intactWidth;
  3745.             child.height = child.intactHeight;
  3746.         }
  3747.         else if( typeof(child.style.intactPixelWidth) != "undefined" )
  3748.         {
  3749.             child.style.pixelWidth = child.style.intactPixelWidth;
  3750.             child.style.pixelHeight = child.style.intactPixelHeight;
  3751.         }
  3752.     }
  3753. }
  3754.  
  3755. CAgencyZoom.prototype.ResetParameters = function()
  3756. {
  3757.     this.PrepareEffect();
  3758.     this.ResetParametersAllChildren( this.ele );
  3759.     for(var index = 0; index < this.ele.all.length; index++)
  3760.         this.ResetParametersAllChildren(this.ele.all[index]);
  3761.         
  3762.     this.startTime = (new Date()).getTime();
  3763. }
  3764.  
  3765. CAgencyZoom.prototype.ResetParametersAllChildren = function( child )
  3766. {
  3767.     CCSSP.ShowObject(child, true );
  3768.     if( (child.tagName == "DIV") && (getParentNode(child).tagName == "TD") )
  3769.         child.width = "100%";// if the div is inside a cell of table, we need the this hack
  3770.     
  3771.     if( CCSSP.IsTextTag(child) )
  3772.         child.orgFontSize = child.style.fontSize;
  3773.     else
  3774.     {
  3775.         if( child.width > "" || child.height > "" )
  3776.         {
  3777.             child.orgWidth = child.intactWidth = child.width;
  3778.             child.orgHeight = child.intactHeight = child.height;
  3779.         }
  3780.         else if( ( typeof(child.orgWidth) != "number" ) && (typeof(child.orgHeight) != "number") )
  3781.         {
  3782.             child.orgWidth = child.style.intactPixelWidth = child.style.pixelWidth;
  3783.             child.orgHeight = child.style.intactPixelHeight = child.style.pixelHeight;
  3784.         }
  3785.     }
  3786. }
  3787. // End of CAgencyZoom
  3788.  
  3789. //// the following effects will use IE's exclusive "filter" function ////
  3790. // Begin of CAgencyAlpha definition
  3791. function CAgencyAlpha( element, settings, bIsIn )
  3792. {// because of "visual filter" style, this won't work in Navigator
  3793.     this.ele = element;
  3794.     this.bIsIn = bIsIn;
  3795.  
  3796.     // to set the default value
  3797.     this.startOpacity = (this.bIsIn) ? 0 : 100;
  3798.     this.endOpacity = (this.bIsIn) ? 100 : 0;
  3799.     
  3800.     this.duration = 1000; // default
  3801.     
  3802.     var arrAllSet = settings.split(",");
  3803.     for( var i = 0; i < arrAllSet.length; i ++ )
  3804.     {// to retrieve the setting
  3805.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3806.         var arrOneSet = arrAllSet[i].split("=");
  3807.         for( var j = 0; j < arrOneSet.length; j++ )
  3808.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3809.         switch( arrOneSet[0] )
  3810.         {
  3811.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3812.         }
  3813.     }
  3814.     
  3815.     this.timer = null;
  3816.     this.aniIndex = CEngine.arrAnimation.length;
  3817.     CEngine.arrAnimation[this.aniIndex] = this;
  3818. }
  3819.  
  3820. CAgencyAlpha.prototype.PrepareEffect = function()
  3821. {// to set the visual filter function
  3822.     // the visual filter ONLY work when set by "Width and Height" or
  3823.     // absolute position for DIV, SPAN and normal tag ( such as p )
  3824.     // but, "absolute" cause the following elements overlap, so:
  3825.     CCSSP.PrepareFilter( this.ele );
  3826.     CCSSP.ShowObject(this.ele, !this.bIsIn );
  3827. }
  3828.  
  3829. CAgencyAlpha.prototype.UpdateEffect = function()
  3830. {// to set the visual filter function
  3831.     if( this.timer == null )
  3832.         this.ResetParameters();
  3833.     if( typeof(this.ele.filters.alpha) != "object" )
  3834.     {
  3835.         this.EndEffect();
  3836.         return;
  3837.     }
  3838.  
  3839.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3840.     if( percent >= 1.0 )
  3841.         this.EndEffect();
  3842.     else if( typeof(this.ele.filters.alpha) == "object" )
  3843.     {
  3844.         this.ele.filters.alpha.opacity = this.startOpacity*(1.0-percent) + this.endOpacity*percent;
  3845.         if( this.timer == null )
  3846.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3847.     }
  3848. }
  3849.  
  3850. CAgencyAlpha.prototype.EndEffect = function()
  3851. {// to remove the visual filter function
  3852.     clearInterval( this.timer );
  3853.     this.timer = null;
  3854.     this.ele.style.filter = "";
  3855.     CCSSP.ShowObject(this.ele, this.bIsIn );
  3856. }
  3857.  
  3858. CAgencyAlpha.prototype.ResetParameters = function()
  3859. {
  3860.     this.PrepareEffect();
  3861.     CCSSP.ShowObject(this.ele, true );
  3862.     this.ele.style.filter = "alpha(opacity=" + this.startOpacity + ")";
  3863.     this.startTime = (new Date()).getTime();
  3864. }
  3865. // End of the CAgencyAlpha definition
  3866.  
  3867. // Begin of CAgencyWave definition
  3868. function CAgencyWave( element, settings )
  3869. {// because of "visual filter" style, this won't work in Navigator
  3870.     this.ele = element;
  3871.  
  3872.     this.duration = 0; // default
  3873.     this.strength = 10;
  3874.     this.freq = 1;
  3875.     this.lightstrength = 1;
  3876.     
  3877.     var arrAllSet = settings.split(",");
  3878.     for( var i = 0; i < arrAllSet.length; i ++ )
  3879.     {// to retrieve the setting
  3880.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3881.         var arrOneSet = arrAllSet[i].split("=");
  3882.         for( var j = 0; j < arrOneSet.length; j++ )
  3883.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3884.         switch( arrOneSet[0] )
  3885.         {
  3886.         case "duration" : this.duration = 100000/arrOneSet[1]; break;
  3887.         case "strength" : this.strength = arrOneSet[1]; break;
  3888.         case "freq" : this.freq = arrOneSet[1]; break;
  3889.         case "lightstrength" : this.lightstrength = arrOneSet[1]; break;
  3890.         }
  3891.     }
  3892.  
  3893.     this.timer = null;
  3894.     this.aniIndex = CEngine.arrAnimation.length;
  3895.     CEngine.arrAnimation[this.aniIndex] = this;
  3896. }
  3897.  
  3898. CAgencyWave.prototype.PrepareEffect = function()
  3899. {// to set the visual filter function
  3900.     CCSSP.PrepareFilter(this.ele);
  3901.  
  3902.     CCSSP.ShowObject(this.ele, true );
  3903. }
  3904.  
  3905. CAgencyWave.prototype.UpdateEffect = function()
  3906. {// to set the visual filter function
  3907.     if( this.timer == null )
  3908.         this.ResetParameters();
  3909.     if( typeof(this.ele.filters.wave) != "object" )
  3910.     {
  3911.         this.EndEffect();
  3912.         return;
  3913.     }
  3914.  
  3915.     if( this.duration > 0 )
  3916.     {
  3917.         var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3918.         if( percent >= 1.0 )
  3919.         {
  3920.             this.EndEffect();
  3921.             return;
  3922.         }
  3923.     }
  3924.     
  3925.     this.ele.filters.wave.phase += 5;
  3926.     this.ele.filters.wave.phase %= 100;
  3927.     if( this.timer == null )
  3928.         this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 50 );
  3929. }
  3930.  
  3931. CAgencyWave.prototype.EndEffect = function()
  3932. {// to remove the visual filter function
  3933.     this.ele.style.filter = "";
  3934.     clearInterval( this.timer );
  3935.     this.timer = null;
  3936. }
  3937.  
  3938. CAgencyWave.prototype.ResetParameters = function()
  3939. {
  3940.     this.PrepareEffect();
  3941.     this.ele.style.filter = "wave(strength=" + this.strength + ",freq=" + 
  3942.      this.freq +", lightstrength=" + this.lightstrength +",phase=0);";
  3943.     this.startTime = (new Date()).getTime();
  3944. }
  3945. // End of the CAgencyWave definition
  3946.  
  3947. // Begin of CAgencyGlow definition
  3948. function CAgencyGlow( element, settings )
  3949. {// because of "visual filter" style, this won't work in Navigator
  3950.     this.ele = element;
  3951.  
  3952.     // to set the default value
  3953.     this.glowColor = "green";
  3954.     this.glowStrength = "3";
  3955.     
  3956.     var arrAllSet = settings.split(",");
  3957.     for( var i = 0; i < arrAllSet.length; i ++ )
  3958.     {
  3959.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3960.         var arrOneSet = arrAllSet[i].split("=");
  3961.         for( var j = 0; j < arrOneSet.length; j++ )
  3962.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3963.         switch( arrOneSet[0] )
  3964.         {
  3965.         case "color" : this.glowColor = arrOneSet[1]; break;
  3966.         case "strength" : this.glowStrength = arrOneSet[1]; break;
  3967.         }
  3968.     }
  3969. }
  3970.  
  3971. CAgencyGlow.prototype.PrepareEffect = function()
  3972. {
  3973.     CCSSP.PrepareFilter(this.ele);
  3974.     CCSSP.ShowObject(this.ele, true );
  3975.     if( this.ele.style.backgroundColor != "" )
  3976.     {//style.backgroundColor somehow stop the visual filter
  3977.         this.ele.intactBackgroundColor = this.ele.style.backgroundColor;
  3978.         this.ele.style.backgroundColor = "";
  3979.     }
  3980. }
  3981.  
  3982. CAgencyGlow.prototype.UpdateEffect = function()
  3983. {// to set the visual filter function
  3984.     this.PrepareEffect();
  3985.     this.ele.style.filter = "glow(Color=" + this.glowColor + ", Strength=" + 
  3986.         this.glowStrength + ", enabled=true" +")";
  3987. }
  3988.  
  3989. CAgencyGlow.prototype.EndEffect = function()
  3990. {// to remove the visual filter function
  3991.     this.ele.style.filter = "";
  3992.     if( typeof(this.ele.intactBackgroundColor) != "undefined" )
  3993.         this.ele.style.backgroundColor = this.ele.intactBackgroundColor;
  3994. }
  3995. // End of the CAgencyGlow definition
  3996.  
  3997. // Begin of CAgencyDropShadow definition
  3998. function CAgencyDropShadow( element, settings )
  3999. {// because of "visual filter" style, this won't work in Navigator
  4000.     this.ele = element;
  4001.  
  4002.     // to set the default value
  4003.     this.shadowColor = "black"; 
  4004.     this.shadowOffx = "1";
  4005.     this.shadowOffy = "1";
  4006.     
  4007.     var arrAllSet = settings.split(",");
  4008.     for( var i = 0; i < arrAllSet.length; i ++ )
  4009.     {
  4010.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  4011.         var arrOneSet = arrAllSet[i].split("=");
  4012.         for( var j = 0; j < arrOneSet.length; j++ )
  4013.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  4014.         switch( arrOneSet[0] )
  4015.         {
  4016.         case "color" : this.shadowColor = arrOneSet[1]; break;
  4017.         case "offx" : this.shadowOffx = arrOneSet[1]; break;
  4018.         case "offy" : this.shadowOffy = arrOneSet[1]; break;
  4019.         }
  4020.     }
  4021. }
  4022.  
  4023. CAgencyDropShadow.prototype.PrepareEffect = function()
  4024. {
  4025.     CCSSP.PrepareFilter(this.ele);
  4026.     CCSSP.ShowObject(this.ele, true );
  4027.     
  4028.     if( this.ele.style.backgroundColor != "" )
  4029.     {//style.backgroundColor somehow stop the visual filter
  4030.         this.ele.intactBackgroundColor = this.ele.style.backgroundColor;
  4031.         this.ele.style.backgroundColor = "";
  4032.     }
  4033. }
  4034.  
  4035. CAgencyDropShadow.prototype.UpdateEffect = function()
  4036. {// to set the visual filter function
  4037.     this.PrepareEffect();
  4038.     this.ele.style.filter = "dropshadow(color=" + this.shadowColor + ", offx=" + 
  4039.         this.shadowOffx + ", offy=" + this.shadowOffy + ")";
  4040. }
  4041.  
  4042. CAgencyDropShadow.prototype.EndEffect = function()
  4043. {// to remove the visual filter function
  4044.     this.ele.style.filter = "";
  4045.     if( typeof(this.ele.intactBackgroundColor) != "undefined" )
  4046.         this.ele.style.backgroundColor = this.ele.intactBackgroundColor;
  4047. }
  4048. // End of the CAgencyDropShadow definition
  4049.  
  4050. // Begin of CAgencyRevealTrans definition
  4051. function CAgencyRevealTrans( element, settings )
  4052. {// because of "visual filter" style, this won't work in Navigator
  4053.     this.ele = element;
  4054.  
  4055.     // to set the default value
  4056.     this.duration = 1.0; //The value is specified in seconds.milliseconds format (0.0000).
  4057.     this.transition = 0;
  4058.     
  4059.     var arrAllSet = settings.split(",");
  4060.     for( var i = 0; i < arrAllSet.length; i ++ )
  4061.     {
  4062.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  4063.         var arrOneSet = arrAllSet[i].split("=");
  4064.         for( var j = 0; j < arrOneSet.length; j++ )
  4065.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  4066.         switch( arrOneSet[0] )
  4067.         {
  4068.         case "type" : this.transition = arrOneSet[1]; break;
  4069.         case "duration" : this.duration = 100/arrOneSet[1];    break;
  4070.         }
  4071.     }
  4072. }
  4073.  
  4074. CAgencyRevealTrans.prototype.PrepareEffect = function()
  4075. {
  4076.     CCSSP.PrepareFilter(this.ele);
  4077.     CCSSP.ShowObject( this.ele, false);
  4078. }
  4079.  
  4080. CAgencyRevealTrans.prototype.UpdateEffect = function()
  4081. {// to set the visual filter function
  4082.     if( typeof( this.ele.filters.RevealTrans ) == "object" )
  4083.     {
  4084.         if( this.ele.filters.RevealTrans.status == 2 )
  4085.             this.ele.filters.RevealTrans.stop();  
  4086.     }
  4087.  
  4088.     this.PrepareEffect();
  4089.     
  4090.     this.ele.style.filter = "RevealTrans(duration=" + this.duration + 
  4091.         ", transition=" + this.transition + ")";
  4092.     
  4093.     if( typeof( this.ele.filters.RevealTrans ) == "object" )
  4094.     {
  4095.         this.ele.filters.RevealTrans.apply();
  4096.         CCSSP.ShowObject( this.ele, true);
  4097.         this.ele.filters.RevealTrans.play();  
  4098.     }
  4099.     else
  4100.         CCSSP.ShowObject( this.ele, true);
  4101. }
  4102.  
  4103. CAgencyRevealTrans.prototype.EndEffect = function()
  4104. {
  4105.     if( typeof( this.ele.filters.RevealTrans ) == "object" )
  4106.         this.ele.filters.RevealTrans.stop();  
  4107.     this.ele.style.filter = "";
  4108. }
  4109. // End of the CAgencyRevealTrans definition
  4110.  
  4111. // Begin of CAgencyBlur definition
  4112. function CAgencyBlur( element, settings )
  4113. {// because of "visual filter" style, this won't work in Navigator
  4114.     this.ele = element;
  4115.  
  4116.     // to set the default value
  4117.     this.strength = "5";
  4118.     this.direction = "90";
  4119.     
  4120.     var arrAllSet = settings.split(",");
  4121.     for( var i = 0; i < arrAllSet.length; i ++ )
  4122.     {
  4123.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  4124.         var arrOneSet = arrAllSet[i].split("=");
  4125.         for( var j = 0; j < arrOneSet.length; j++ )
  4126.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  4127.         switch( arrOneSet[0] )
  4128.         {
  4129.         case "strength" : this.strength = arrOneSet[1]; break;
  4130.         case "direction" : this.direction = arrOneSet[1]; break;
  4131.         }
  4132.     }
  4133. }
  4134.  
  4135. CAgencyBlur.prototype.PrepareEffect = function()
  4136. {
  4137.     CCSSP.PrepareFilter(this.ele);
  4138.     CCSSP.ShowObject(this.ele, true );
  4139. }
  4140.  
  4141. CAgencyBlur.prototype.UpdateEffect = function()
  4142. {// to set the visual filter function
  4143.     CCSSP.PrepareFilter(this.ele);
  4144.     this.ele.style.filter = "blur(strength=" + this.strength + 
  4145.         ", direction=" + this.direction + ")";
  4146. }
  4147.  
  4148. CAgencyBlur.prototype.EndEffect = function()
  4149. {// to remove the visual filter function
  4150.     this.ele.style.filter = "";
  4151. }
  4152. // End of the CAgencyBlur definition
  4153.  
  4154. // Begin of CAgencyChangeFilter definition
  4155. function CAgencyChangeFilter( element, settings ) // flipH, flipV, invert, grey,
  4156. {// because of "visual filter" style, this won't work in Navigator
  4157.     this.ele = element;
  4158.  
  4159.     // to set the default value
  4160.     this.filterFunction = settings;
  4161. }
  4162.  
  4163. CAgencyChangeFilter.prototype.PrepareEffect = function()
  4164. {
  4165.     CCSSP.PrepareFilter(this.ele);
  4166.     CCSSP.ShowObject(this.ele, true );
  4167. }
  4168.  
  4169. CAgencyChangeFilter.prototype.UpdateEffect = function()
  4170. {// to set the visual filter function
  4171.     CCSSP.PrepareFilter(this.ele);
  4172.     this.ele.style.filter = this.filterFunction;
  4173. }
  4174.  
  4175. CAgencyChangeFilter.prototype.EndEffect = function()
  4176. {// to remove the visual filter function
  4177.     this.ele.style.filter = "";
  4178. }
  4179. // End of the CAgencyChangeFilter definition
  4180.  
  4181. // The effects below change the style on the fly, so they won't work in Navigator
  4182.  
  4183. // Begin of CAgencyFontChange definition, 
  4184. function CAgencyFontChange( element, settings )
  4185. {//this class can be replace by CAgencyChangeStyle,provided the "settings" is standard CSS string.
  4186.     this.ele = element;
  4187.     
  4188.     // to retrieve the original font style
  4189.     this.RetrieveOldFont( this.ele );
  4190.     
  4191.     // to set the default font to change
  4192.     this.newfontFamily = this.ele.oldFontFamily;
  4193.     this.newfColor = this.ele.oldColor;
  4194.     this.newtextDecoration = this.ele.oldTextDecoration;
  4195.     this.newfontWeight = this.ele.oldFontWeight;
  4196.     this.newfontStyle = this.ele.oldFontStyle;
  4197.     this.newfontSize = this.ele.oldFontSize;
  4198.     this.newBackgroundColor = this.ele.oldBackgroundColor;
  4199.     
  4200.     var arrAllSet = settings.split(",");
  4201.     for( var i = 0; i < arrAllSet.length; i ++ )
  4202.     {// to retrieve the setting
  4203.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  4204.         var arrOneSet = arrAllSet[i].split("=");
  4205.         for( var j = 0; j < arrOneSet.length; j++ )
  4206.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  4207.         switch( arrOneSet[0] )
  4208.         {
  4209.         case "font-family" : this.newfontFamily = arrOneSet[1]; break;
  4210.         case "color" : this.newfColor = arrOneSet[1]; break;
  4211.         case "underline" : this.newtextDecoration = (arrOneSet[1]=="on")? "underline" : "none"; break;
  4212.         case "bold" : this.newfontWeight = (arrOneSet[1]=="on")? "bold" : "normal"; break;
  4213.         case "italic" : this.newfontStyle = (arrOneSet[1]=="on")? "italic" : "normal"; break;
  4214.         case "size" : this.newfontSize = arrOneSet[1]; break;
  4215.         case "background-color" : this.newBackgroundColor = arrOneSet[1]; break;
  4216.         }
  4217.     }
  4218. }
  4219.  
  4220. CAgencyFontChange.prototype.RetrieveOldFont = function(objChild)
  4221. {
  4222.     if( typeof(objChild.oldFontFamily) == "undefined" )
  4223.         objChild.oldFontFamily = objChild.style.fontFamily;
  4224.     if( typeof(objChild.oldColor) == "undefined" )
  4225.         objChild.oldColor = objChild.style.color;
  4226.     if( typeof(objChild.oldTextDecoration) == "undefined" )
  4227.         objChild.oldTextDecoration = objChild.style.textDecoration;
  4228.     if( typeof(objChild.oldFontWeight) == "undefined" )
  4229.         objChild.oldFontWeight = objChild.style.fontWeight;
  4230.     if( typeof(objChild.oldFontStyle) == "undefined" )
  4231.         objChild.oldFontStyle = objChild.style.fontStyle;
  4232.     if( typeof(objChild.oldFontSize) == "undefined" )
  4233.         objChild.oldFontSize = objChild.style.fontSize;
  4234.     if( typeof(objChild.oldBackgroundColor) == "undefined" )
  4235.         objChild.oldBackgroundColor = objChild.style.backgroundColor;
  4236. }
  4237.  
  4238. CAgencyFontChange.prototype.PrepareEffect = function()
  4239. {
  4240.     // as for expanding text, the child is created after the constructor called
  4241.     for(var index = 0; index < this.ele.all.length; index++)
  4242.         this.RetrieveOldFont(this.ele.all[index]);
  4243.     CCSSP.ShowObject(this.ele, true );
  4244. }
  4245.  
  4246. CAgencyFontChange.prototype.UpdateEffect = function()
  4247. {// to change the font
  4248.     this.PrepareEffect();
  4249.     this.UpdateEffectAllChildren( this.ele );
  4250.     for( var index = 0; index < this.ele.all.length; index++)
  4251.         this.UpdateEffectAllChildren(this.ele.all[index]);
  4252. }
  4253.  
  4254. CAgencyFontChange.prototype.UpdateEffectAllChildren = function(objChild)
  4255. {
  4256.     objChild.style.fontFamily = this.newfontFamily;
  4257.     objChild.style.color = this.newfColor;
  4258.     objChild.style.textDecoration = this.newtextDecoration;
  4259.     objChild.style.fontWeight = this.newfontWeight;
  4260.     objChild.style.fontStyle = this.newfontStyle;
  4261.     objChild.style.fontSize = this.newfontSize;
  4262.     objChild.style.backgroundColor = this.newBackgroundColor;
  4263. }
  4264.  
  4265. CAgencyFontChange.prototype.EndEffect = function()
  4266. {// to reinstate the original font style
  4267.     this.EndEffectAllChildren( this.ele );
  4268.     for( var index = 0; index < this.ele.all.length; index++)
  4269.         this.EndEffectAllChildren(this.ele.all[index]);
  4270. }
  4271.  
  4272. CAgencyFontChange.prototype.EndEffectAllChildren = function( objChild )
  4273. {
  4274.     if( typeof(objChild.oldFontFamily) != "undefined" )
  4275.         objChild.style.fontFamily = objChild.oldFontFamily;
  4276.     if( typeof(objChild.oldColor) != "undefined" )
  4277.         objChild.style.color = objChild.oldColor;
  4278.     if( typeof(objChild.oldFontWeight) != "undefined" )
  4279.         objChild.style.fontWeight = objChild.oldFontWeight;
  4280.     if( typeof(objChild.oldFontStyle) != "undefined" )
  4281.         objChild.style.fontStyle = objChild.oldFontStyle;
  4282.     if( typeof(objChild.oldFontSize) != "undefined" )
  4283.         objChild.style.fontSize = objChild.oldFontSize;
  4284.     if( typeof(objChild.oldTextDecoration) != "undefined" )
  4285.         objChild.style.textDecoration = objChild.oldTextDecoration;
  4286.     if( typeof(objChild.oldBackgroundColor) != "undefined" )
  4287.         objChild.style.backgroundColor = objChild.oldBackgroundColor;
  4288. }
  4289. // End of the CAgencyFontChange definition
  4290.  
  4291. // Begin of the CAgencyChangeStyle definition
  4292. function CAgencyChangeStyle( element, settings )
  4293. {//this class can be replace by CAgencyChangeStyle,provided the "settings" is standard CSS string.
  4294.     this.ele = element;
  4295.     
  4296.     // to retrieve the original style
  4297.     this.oldstyle = this.ele.style.cssText;
  4298.     
  4299.     // to set the default style
  4300.     this.newStyle = this.oldstyle;
  4301.     
  4302.     if( typeof(settings) == "string" && settings.length > 1 )
  4303.         this.newStyle = this.oldstyle + " " + settings;
  4304. }
  4305.  
  4306. CAgencyChangeStyle.prototype.PrepareEffect = function()
  4307. {
  4308.     CCSSP.ShowObject(this.ele, true );
  4309. }
  4310.  
  4311. CAgencyChangeStyle.prototype.UpdateEffect = function()
  4312. {// to change the style
  4313.     this.ele.style.cssText = this.newStyle;
  4314. }
  4315.  
  4316. CAgencyChangeStyle.prototype.EndEffect = function()
  4317. {// to reinstate the original style
  4318.     this.ele.style.cssText = this.oldStyle;
  4319. }
  4320. // End of the CAgencyChangeStyle definition
  4321.  
  4322. //End the definition of CAgencyXXXX classes
  4323.  
  4324. //Begin to collaborate with other event handler settings 
  4325. CCSSP.RegisterEventHandler( window, "onload", "CEngine.OnPageLoad();BSSCOnLoad();InitTriggersInHead();");
  4326. CCSSP.RegisterEventHandler( document, "onclick", "CEngine.OnPageClick();BSSCOnClick();");
  4327. CCSSP.RegisterEventHandler( document, "onmouseover", "CEngine.OnMouseOver();BSSCOnMouseOver();" );
  4328. CCSSP.RegisterEventHandler( document, "onmouseout", "CEngine.OnMouseOver();BSSCOnMouseOut();" );
  4329. CCSSP.RegisterEventHandler( window, "onunload", "BSSCOnUnload();");
  4330. //End to collaborate with other event handler settings
  4331.  
  4332. /// Section End  - CCSSP DHTM 2 (JavaScript 1.2)
  4333.  
  4334. //// Segment End -- (JavaScript 1.2)
  4335.